Пример #1
0
 public Battery(string model, batterryType? type, int? hoursStanby, int? hoursTalk)
 {
     this.model = model;
     this.type = type;
     this.hoursStanby = hoursStanby;
     this.hoursTalk = hoursTalk;
 }
Пример #2
0
 public Battery(string model, batterryType? type)
     : this(model,type,null,null)
 {
 }