aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.SkuParser.Api/Services/ISkuParser.cs
blob: 43291350a18a5960487f400a633c1c547fcb19c5 (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);
}