diff options
Diffstat (limited to 'RhSolutions.Api/Services/IPricelistParser.cs')
-rw-r--r-- | RhSolutions.Api/Services/IPricelistParser.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/RhSolutions.Api/Services/IPricelistParser.cs b/RhSolutions.Api/Services/IPricelistParser.cs new file mode 100644 index 0000000..eed1dee --- /dev/null +++ b/RhSolutions.Api/Services/IPricelistParser.cs @@ -0,0 +1,9 @@ +using RhSolutions.Api.Models; + +namespace RhSolutions.Api.Services +{ + public interface IPricelistParser + { + public IAsyncEnumerable<Product> GetProducts(HttpContext context); + } +}
\ No newline at end of file |