public RoomAmenitiesController(Async_InnDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public AmenitiesServices(Async_InnDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public HotelRoomService(Async_InnDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public HotelService(Async_InnDbContext context, IHotelRoomManager hotelRoom)
 {
     _context   = context;
     _hotelRoom = hotelRoom;
 }