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