Change Dictionary to IEnumerable in FillColumn method
This commit is contained in:
parent
f7949badda
commit
a825d8d8a5
@ -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>>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user