예제 #1
0
 public TableFlightRow(long number, string date_time, TableAirplaneRow airplane, TableAirportRow airport_in, TableAirportRow airport_out)
 {
     this.number           = number;
     this.date_time        = date_time;
     this.number_airplane  = airplane.number;
     this.code_airport_in  = airport_in.code;
     this.code_airport_out = airport_out.code;
 }
예제 #2
0
 public TableSeatRow(long id, string code, TableAirplaneRow airplane)
 {
     this.id              = id;
     this.code            = code;
     this.number_airplane = airplane.number;
 }