static void Main(string[] args) { LandingPlattform landingPlattform = new LandingPlattform("plattform1", true); Drohne drone = new Drohne("Drone1", true); //Hier kannst du die werte umstellen und ausprobieren, gerne kannst du den Code verändern! Have fun! AirportManagment airport = new AirportManagment(drone, landingPlattform); Console.WriteLine(airport.Landung()); Console.ReadLine(); }
public AirportManagment(Drohne drone, LandingPlattform landeplatz) { this.drohne = drone; this.landeplatz = landeplatz; }