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