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
|
|
|
}
|
|
|
|
}
|