Esempio n. 1
0
 public Battery(BatteryType.Type batteryType, int hoursIdle, int hoursTalk)
     : this(batteryType)
 {
     this.hoursIdle = hoursIdle;
     this.hoursTalk = hoursTalk;
 }
Esempio n. 2
0
 public Battery(BatteryType.Type batteryType)
     : this()
 {
     this.BatteryType = batteryType;
 }