Example #1
0
 public UserDetailController(HotelRoomBookingDbContext _context)
 {
     context = _context;
 }
 public BookingsController(HotelRoomBookingDbContext context, IMapper mapper)
 {
     Context = context;
     Mapper  = mapper;
 }
 public CustomerController(HotelRoomBookingDbContext _context)
 {
     context = _context;
 }