9 lines
180 B
C#
9 lines
180 B
C#
|
using RhSolutions.Api.Models;
|
||
|
|
||
|
namespace RhSolutions.Api.Services
|
||
|
{
|
||
|
public interface IPricelistParser
|
||
|
{
|
||
|
public IAsyncEnumerable<Product> GetProducts(HttpContext context);
|
||
|
}
|
||
|
}
|