diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-01-28 09:58:20 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-01-28 09:58:20 +0300 |
commit | a825d8d8a5c6496139ca0a7dbc8546d30db98908 (patch) | |
tree | b6c6521db19811d10834474e2830df2c93c62680 /src | |
parent | f7949badda80561efe16f0e77054fc44b729707c (diff) |
Change Dictionary to IEnumerable in FillColumn method
Diffstat (limited to 'src')
-rw-r--r-- | src/PriceListTools/PriceListTool.cs | 2 |
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>>(); |