Ejemplo n.º 1
0
        private void OnRunwayArrival(Plane plane, RunwayStation runway)
        {
            Task.Run(() => notifyService.NewTakeoff(plane));
            //db update!!!!!
            /*Task.Run(() =>*/ Flight flight = CreateFlightAction(plane, runway, plane.FlightAction);

            plane = null;
            runway.CurrentPlane = null;
        }