Change Dictionary to IEnumerable in FillColumn method

This commit is contained in:
Sergey Chebotar 2022-01-28 09:58:20 +03:00
parent f7949badda
commit a825d8d8a5

View File

@ -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>>(); List<KeyValuePair<string, double>> missing = new List<KeyValuePair<string, double>>();