public HotelManager(IHotelRepo hotelRepo)
 {
     _hotelRepo = hotelRepo;
 }
Пример #2
0
 public HotelController(IHotelRepo repository, HotelDbContext context)
 {
     this.repository = repository;
     _context        = context;
 }