0
0
RhSolutions-Api/RhSolutions.Api/Services/IPricelistParser.cs
2023-05-11 07:55:26 +03:00

9 lines
164 B
C#

using RhSolutions.Models;
namespace RhSolutions.Api.Services
{
public interface IPricelistParser
{
public List<Product> GetProducts(HttpContext context);
}
}