aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-01-28 09:58:20 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-01-28 09:58:20 +0300
commita825d8d8a5c6496139ca0a7dbc8546d30db98908 (patch)
treeb6c6521db19811d10834474e2830df2c93c62680 /src/PriceListTools
parentf7949badda80561efe16f0e77054fc44b729707c (diff)
Change Dictionary to IEnumerable in FillColumn method
Diffstat (limited to 'src/PriceListTools')
-rw-r--r--src/PriceListTools/PriceListTool.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PriceListTools/PriceListTool.cs b/src/PriceListTools/PriceListTool.cs
index 5b10bf0..819bcc6 100644
--- a/src/PriceListTools/PriceListTool.cs
+++ b/src/PriceListTools/PriceListTool.cs
@@ -31,7 +31,7 @@ namespace RehauSku.PriceListTools
}
}
- protected private void FillColumn(Dictionary<string, double> dictionary, int column)
+ protected private void FillColumn(IEnumerable<KeyValuePair<string, double>> dictionary, int column)
{
List<KeyValuePair<string, double>> missing = new List<KeyValuePair<string, double>>();