Ejemplo n.º 1
0
 public void updateBoatValues(Boat boat, int index)
 {
     this.boats[index].Length = boat.Length;
     this.boats[index].Type   = boat.Type;
 }
Ejemplo n.º 2
0
 public void addBoat(Boat boat)
 {
     boats.Add(boat);
 }