| | |
| | | public HydroCoolingViewModel(Yw.Model.HydroCoolingInfo rhs, Yw.Model.HydroModelInfo hydroInfo) : base(rhs, hydroInfo) |
| | | { |
| | | this.LowerLimit = rhs.LowerLimit; |
| | | this.UpdatePropStatus(nameof(this.LowerLimit), rhs, nameof(rhs.LowerLimit)); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | { |
| | | base.UpdateProperty(); |
| | | this.LowerLimit = this.Vmo.LowerLimit; |
| | | this.UpdatePropStatus(nameof(this.LowerLimit), this.Vmo, nameof(this.Vmo.LowerLimit)); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | { |
| | | base.UpdateVmoProperty(); |
| | | this.Vmo.LowerLimit = this.LowerLimit; |
| | | this.Vmo.UpdatePropStatus(nameof(this.Vmo.LowerLimit), this, nameof(this.LowerLimit)); |
| | | } |
| | | |
| | | |