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

9 lines
164 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
{
2023-05-11 07:55:26 +03:00
public List<Product> GetProducts(HttpContext context);
2022-12-14 09:53:10 +03:00
}
}