Exemple #1
0
 public Battery(string model, BateryType batteryType)
     : this(model)
 {
     this.BatteryType = batteryType;
 }
Exemple #2
0
 public Battery(string model, BateryType batteryType, int hoursIdle, int hoursTalk)
     : this(model, batteryType)
 {
     this.HoursIdle = hoursIdle;
     this.HoursTalk = hoursTalk;
 }
Exemple #3
0
 public Battery(BateryType batteryType)
 {
     this.BatteryType = batteryType;
 }