aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.SkuParser.Api/Services/ISkuParser.cs
blob: 98b9d9c979c14e578ef63118c1448236baf55011 (plain)
1
2
3
4
5
6
7
using RhSolutions.SkuParser.Models;

namespace RhSolutions.SkuParser.Services;
public interface ISkuParser
{
	public IEnumerable<ProductQuantity> ParseProducts(IFormFile file);
}