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