Exemplo n.º 1
0
 public Conditioner(IFanSystem fanSystem) : this(Convert.ToInt32((fanSpeedMax - fanSpeedMin) / 2), fanSystem)
 {
 }
Exemplo n.º 2
0
 public Conditioner(int temperature, IFanSystem fanSystem) : base(fanSpeedMin, fanSpeedMax, temperature)
 {
     this.FanSystem = (FanSystem)fanSystem;
 }