Exemplo n.º 1
0
 public APIBookingController(ICustomer icustomer, ICustomerAcount iacount, IRoom iroom, IBooking ibooking, IBookedBeds bookedbeds, IBed ibed)
 {
     _icustomer  = icustomer;
     _iacount    = iacount;
     _iroom      = iroom;
     _ibooking   = ibooking;
     _bookedBeds = bookedbeds;
     _ibed       = ibed;
 }
Exemplo n.º 2
0
 public APILoginController(ICustomerAcount iAcount)
 {
     _icustomerAcount = iAcount;
 }
Exemplo n.º 3
0
 public APICustomerController(ICustomer icustomer, ICustomerAcount iacount)
 {
     _icustomer = icustomer;
     _iacount   = iacount;
 }