diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2025-01-15 15:20:16 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2025-01-15 15:20:16 +0300 |
commit | c1b7be71c990bc8b11bb052b43551841d0af5ba9 (patch) | |
tree | cfd2268e1180d55fe51267a6cf2772f97f4ce2d1 | |
parent | be127319e27d630ce14c793fc50bccd576e5fb7b (diff) |
Fix values duplicate on multiple files
-rw-r--r-- | RhSolutions.SkuParser.Api/Services/BsExcelParser.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/RhSolutions.SkuParser.Api/Services/BsExcelParser.cs b/RhSolutions.SkuParser.Api/Services/BsExcelParser.cs index 684c4c2..df8fafd 100644 --- a/RhSolutions.SkuParser.Api/Services/BsExcelParser.cs +++ b/RhSolutions.SkuParser.Api/Services/BsExcelParser.cs @@ -8,13 +8,11 @@ namespace RhSolutions.SkuParser.Api.Services; public class BsExcelParser : ISkuParser { private IConfiguration configuration; - // private Dictionary<Product, double> result; private const int rowsLookupCount = 20; private const decimal vat = 1.2M; public BsExcelParser(IConfiguration configuration) { this.configuration = configuration; - // result = new(); } public Dictionary<Product, double> ParseProducts(IFormFile file) |