public Ticket(DateTime date, int price, Airport from, Airport to)
 {
     this.Date = date;
     this.Price = price;
     this.From = from;
     this.To = to;
 }
 public FlightPath(Airport from, Airport to)
 {
     this.From = from;
     this.To = to;
 }