| | |
| | | /// </summary> |
| | | public void SetBindingData(Yw.Model.HydroModelInfo hydroInfo) |
| | | { |
| | | SetBindingData(hydroInfo?.Pumps); |
| | | SetBindingData(hydroInfo?.Pumps, hydroInfo); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public void SetBindingData(List<Yw.Model.HydroPumpInfo> allPumpList) |
| | | public void SetBindingData(List<Yw.Model.HydroPumpInfo> allPumpList, Yw.Model.HydroModelInfo hydroInfo) |
| | | { |
| | | var list = allPumpList?.Select(x => new HydroPumpListItemExtendViewModel(x, allPumpList)).ToList(); |
| | | var list = allPumpList?.Select(x => new HydroPumpListItemExtendViewModel(x, allPumpList, hydroInfo)).ToList(); |
| | | SetBindingData(list); |
| | | } |
| | | |