Exemplo n.º 1
0
 public void AcceptShip(ISpaceshipCargoHandler ship)
 {
     if (ship == null)
     {
         throw new ArgumentNullException("ISpaceshipCargoHandler is null.");
     }
     ship.AcceptNow();
     _spaceshipsStoragePort.AddShip(ship);
 }