public RoomAmenitiesController(Async_InnDbContext context)
 {
     _context = context;
 }
Пример #2
0
 public AmenitiesServices(Async_InnDbContext context)
 {
     _context = context;
 }
Пример #3
0
 public HotelRoomService(Async_InnDbContext context)
 {
     _context = context;
 }
Пример #4
0
 public HotelService(Async_InnDbContext context, IHotelRoomManager hotelRoom)
 {
     _context   = context;
     _hotelRoom = hotelRoom;
 }