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