public BattleShip(string aName) : base(aName) { Console.WriteLine("A Battle ship is created"); work = new HeavyArtillery(); }
public FireShip(string aName) : base(aName) { Console.WriteLine("A fire ship is created"); work=new HeavyArtillery(); }