9 lines
194 B
C#
9 lines
194 B
C#
|
using RhSolutions.SkuParser.Models;
|
||
|
|
||
|
namespace RhSolutions.SkuParser.Abstractions;
|
||
|
|
||
|
public interface ISkuParser
|
||
|
{
|
||
|
public Dictionary<Product, double> ParseProducts(IFormFile file);
|
||
|
}
|