blob: a1b2fbf43b20009e411a96b3524d7cfdbaf98ff9 (
plain)
1
2
3
4
5
6
7
8
|
using RhSolutions.SkuParser.Models;
namespace RhSolutions.SkuParser.Abstractions;
public interface ISkuParser
{
public Dictionary<Product, double> ParseProducts(IFormFile file);
}
|