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;
 }