Esempio n. 1
0
 def load_past_flights_from_file(self, Voyage_to_find):
     return IOAPI().load_past_flights_from_file(Voyage_to_find)
Esempio n. 2
0
 def write_in_file_past_flights(self, new_past_flight):
     return IOAPI().write_in_file_past_flights(new_past_flight)
Esempio n. 3
0
 def load_upcoming_flights_from_file(self, Voyage_to_find):
     return IOAPI().load_upcoming_flights_from_file(Voyage_to_find)
Esempio n. 4
0
 def overwrite_upcoming_flights_file(self, updated_upcoming_flights_str):
     return IOAPI().overwrite_upcoming_flights_file(
         updated_upcoming_flights_str)
Esempio n. 5
0
 def update_destination_and_overwrite(self, update_destination):
     return IOAPI().update_destination_and_overwrite(update_destination)
Esempio n. 6
0
 def __init__(self, a_str=''):
     self.a_str = a_str
     self.IOAPI = IOAPI()
Esempio n. 7
0
 def load_pilot_or_cabincrew(self, new_employee):
     return IOAPI().load_pilot_or_cabincrew(new_employee)
Esempio n. 8
0
 def overwrite_voyage_file(self, all_voyages_list):
     return IOAPI().overwrite_voyage_file(all_voyages_list)
Esempio n. 9
0
 def store_airplanesinfo_to_file(self, new_airplane_type):
     return IOAPI().store_airplanesinfo_to_file(new_airplane_type)
Esempio n. 10
0
 def load_crew_from_file(self, ssn_toFind):
     return IOAPI().load_crew_from_file(ssn_toFind)
Esempio n. 11
0
 def load_airplanesinfo(self, planeTypeId):
     return IOAPI().load_airplanesinfo(planeTypeId)
Esempio n. 12
0
 def store_airplanes_to_file(self, new_airplane):
     return IOAPI().store_airplanes_to_file(new_airplane)
Esempio n. 13
0
 def load_airplanes_from_file(self, planeID):
     return IOAPI().load_airplanes_from_file(planeID)
Esempio n. 14
0
 def load_voyages_from_file(self, voyageID):
     return IOAPI().load_voyages_from_file(voyageID)
Esempio n. 15
0
 def write_in_file(self, updated_employees_str):
     return IOAPI().write_in_file(updated_employees_str)
Esempio n. 16
0
 def write_in_voyages_flights(self, new_voyage):
     return IOAPI().write_in_voyages_flights(new_voyage)
Esempio n. 17
0
 def overwrite_crew_file(self, all_employees_list):
     return IOAPI().overwrite_crew_file(all_employees_list)
Esempio n. 18
0
 def load_destinations(self, destination_id):
     return IOAPI().load_destinations(destination_id)
Esempio n. 19
0
 def store_destination_to_file(self, new_destination_list):
     return IOAPI().store_destination_to_file(new_destination_list)