diff options
Diffstat (limited to 'RhSolutions.SkuParser.Api/Services/ISkuParser.cs')
-rw-r--r-- | RhSolutions.SkuParser.Api/Services/ISkuParser.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/RhSolutions.SkuParser.Api/Services/ISkuParser.cs b/RhSolutions.SkuParser.Api/Services/ISkuParser.cs new file mode 100644 index 0000000..98b9d9c --- /dev/null +++ b/RhSolutions.SkuParser.Api/Services/ISkuParser.cs @@ -0,0 +1,7 @@ +using RhSolutions.SkuParser.Models; + +namespace RhSolutions.SkuParser.Services; +public interface ISkuParser +{ + public IEnumerable<ProductQuantity> ParseProducts(IFormFile file); +} |