# Functions
CreateAirports takes a new airport code and creates a new airport.
CreateBoardingPass takes templateId and customer details creates a new boarding pass, and sends a welcome email to deliver boarding pass url.
CreateCarrier takes a new carrier code and creates a new carrier.If the carrier already exists it cannot be created.
CreateFlight takes templateId to use as base template and uses a carrier code and creates a new flight.
CreateFlightDesignator creates flight designator using flight code.
CreateTemplate creates the pass template for flights and boarding passes.
DeleteAirport takes an existing airport code and deletes the airport associated with it.If the airport doesn't exist it cannot be deleted.
DeleteCarrier takes an existing carrier code and deletes the carrier associated with it.If the carrier doesn't exist it cannot be deleted.
DeleteFlight takes an existing flight number as well as other details and deletes the flight associated with it.If the flight doesn't exist it cannot be deleted.
DeleteFlightDesignator takes an existing flight designation and deletes the flight designator associated with it.If the flight designator doesn't exist it cannot be deleted.