diff options
Diffstat (limited to 'RhSolutions.SkuParser.Api/Services/CommonCsvParser.cs')
-rw-r--r-- | RhSolutions.SkuParser.Api/Services/CommonCsvParser.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RhSolutions.SkuParser.Api/Services/CommonCsvParser.cs b/RhSolutions.SkuParser.Api/Services/CommonCsvParser.cs index e88ba25..6dfc0da 100644 --- a/RhSolutions.SkuParser.Api/Services/CommonCsvParser.cs +++ b/RhSolutions.SkuParser.Api/Services/CommonCsvParser.cs @@ -20,7 +20,7 @@ public class CommonCsvParser : ISkuParser };
using CsvReader csvReader = new(reader, config);
- return csvReader.GetRecords<ProductQuantity>()
- .ToDictionary(pq => new Product() { Sku = pq.Product.Sku }, pq => pq.Quantity);
+ return csvReader.GetRecords<SkuQuantity>()
+ .ToDictionary(pq => new Product() { Sku = pq.Sku }, pq => pq.Quantity);
}
}
|