1 2 3 4 5 6 7
using RhSolutions.SkuParser.Models; namespace RhSolutions.SkuParser.Services; public interface ISkuParser { public IEnumerable<ProductQuantity> ParseProducts(IFormFile file); }