12 lines
240 B
C#
12 lines
240 B
C#
using RhSolutions.SkuParser.Models;
|
|
|
|
namespace RhSolutions.SkuParser.Services;
|
|
|
|
public class ExcelParser : ISkuParser
|
|
{
|
|
public Task<IEnumerable<ProductQuantity>> ParseProducts(IFormFile file)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|