0
0
RhSolutions-Api/RhSolutions.Api/Services/IPricelistParser.cs

9 lines
166 B
C#
Raw Normal View History

2023-05-11 07:55:26 +03:00
using RhSolutions.Models;
2022-12-14 09:53:10 +03:00
namespace RhSolutions.Api.Services
{
public interface IPricelistParser
{
2024-08-08 16:38:23 +03:00
public IEnumerable<Product> GetProducts(IFormFile? file);
2022-12-14 09:53:10 +03:00
}
}