private void ExitedStationOperations(Plane plane)
 {
     SetPlaneExitedTime(plane);
     DbMovementHistoryUpdate(simulatorService.GetPlaneHistory());  //update old station
 }
示例#2
0
 private void AddHistoryToDB(Plane plane)
 {
     simulatorService.SetPlaneExitedTime(plane);
     dbSaveService.AddMovementHistory(simulatorService.GetPlaneHistory());
 }