Beispiel #1
0
 public Battery(MobileBatteryType batteryType, int mAh, int hoursIdle, int hoursTalk) : this(batteryType, mAh)
 {
     this.HoursTalk = hoursTalk;
     this.talkSet   = true;
     this.HoursIdle = hoursIdle;
     this.idleSet   = true;
 }
Beispiel #2
0
 public Battery(MobileBatteryType batteryType, int mAh) : base()
 {
     this.BatteryType = batteryType;
     this.MAh         = mAh;
 }