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; }
public Battery(MobileBatteryType batteryType, int mAh) : base() { this.BatteryType = batteryType; this.MAh = mAh; }