Esempio n. 1
0
 public IShip GetSingle()
 {
     SimpleShip ship = new SimpleShip(1);
     return ship;
 }
Esempio n. 2
0
 public IShip GetTriple()
 {
     SimpleShip ship = new SimpleShip(3);
     return ship;
 }
Esempio n. 3
0
 public IShip GetDouble()
 {
     SimpleShip ship = new SimpleShip(2);
     return ship;
 }