コード例 #1
0
 public Ticket(DateTime date, int price, Airport from, Airport to)
 {
     this.Date = date;
     this.Price = price;
     this.From = from;
     this.To = to;
 }
コード例 #2
0
 public FlightPath(Airport from, Airport to)
 {
     this.From = from;
     this.To = to;
 }