0
0
RhSolutions-Api/RhSolutions.Api/Services/IPricelistParser.cs
Sergey Chebotar da94ed6d89 Init commit
2022-12-14 09:53:10 +03:00

9 lines
180 B
C#

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