public UpdateRoomCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public AddWardenCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public UpdateFloorCommandHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #4
0
 public AddRoomOnlyCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
Пример #5
0
 public AddHostelCommandHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #6
0
 public SelectAllBuildingQueryHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public SelectFloorsQueryHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
 }
Пример #8
0
 public UpdateWardenCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public SelectFloorByIdQueryHandler(IHostelDbContext context)
 {
     _context = context;
 }
Пример #10
0
 public SelectBedsOnlyQueryHandler(IHostelDbContext context)
 {
     _context = context;
 }
Пример #11
0
 public UpdateBedCommandHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
 }
 public SelectAllRoomsQueryHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public AddHostelSetupCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public SelectAllWardenQueryHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }