Exemplo n.º 1
0
 public Booking(Passenger Passenger, Flight Flight, Seat Seat)
 {
     this.Passenger = Passenger;
     this.Flight = Flight;
     this.Seat = Seat;
 }
Exemplo n.º 2
0
 public RequestAddSeatPrice(Seat seat, Flight flight, Decimal price)
 {
     this.seat = seat;
     this.flight = flight;
     this.price = price;
 }
Exemplo n.º 3
0
 public RequestGetSeatPrice(Flight flight, Seat seat)
 {
     this.flight = flight;
     this.seat = seat;
 }