Exemplo n.º 1
0
 public string getAllFlights()
 {
     return(FlightsService.flightsToString(flishtsSchedule.getAllFlights));
 }
Exemplo n.º 2
0
 public string getFlightsFromTo(string cityFrom, string cityTo)
 {
     return(FlightsService.flightsToString(flishtsSchedule.findFlightFromTo(cityFrom, cityTo)));
 }
Exemplo n.º 3
0
 public Service1()
 {
     flishtsSchedule = createFlightService();
 }