public BookingsController(
     BookingCloneContext context,
     IBookingService bookingService
     )
 {
     _context       = context;
     BookingService = bookingService;
 }
 public RoomsController(BookingCloneContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public AgenciesController(BookingCloneContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public UserService(BookingCloneContext context)
 {
     Context = context;
 }
 public BookingService(
     BookingCloneContext context
     )
 {
     this.context = context;
 }
 public HotelsController(BookingCloneContext context)
 {
     _context = context;
 }
Esempio n. 7
0
 public GuestsController(BookingCloneContext context)
 {
     _context = context;
 }
 public PaymentsController(BookingCloneContext context)
 {
     _context = context;
 }