public AmenityRepository(ASynceInnDbContext context)
 {
     _context = context;
 }
 public HotelRoomRepository(ASynceInnDbContext context, IRoom room, IAmenity amenity)
 {
     _context = context;
     _room    = room;
     _amenity = amenity;
 }
예제 #3
0
 public HotelRepository(ASynceInnDbContext context, IHotelRoom hotelRoom)
 {
     _context   = context;
     _HotelRoom = hotelRoom;
 }