Beispiel #1
0
 public Booking(int amountOfPeople, DateTime date, DateTime bookingTime, Employee emp, EscapeRoom er)
 {
     this.AmountOfPeople = amountOfPeople;
     this.Date           = date;
     this.BookingTime    = bookingTime;
     this.Emp            = emp;
     this.Er             = er;
 }
Beispiel #2
0
 public Booking(int amountOfPeople, DateTime date, DateTime bookingTime, Customer cus, EscapeRoom er)
 {
     this.AmountOfPeople = amountOfPeople;
     this.Date           = date;
     this.BookingTime    = bookingTime;
     this.Cus            = cus;
     this.Er             = er;
 }