public Battery(string model, string manufacturer, BatteryCellType cell)
     : this(model, manufacturer)
 {
     this.CellType = cell;
 }
 public Battery(BatteryCellType cell)
     : this()
 {
     this.CellType = cell;
 }