public UpdateRoomCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public AddWardenCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public UpdateFloorCommandHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Esempio n. 4
0
 public AddRoomOnlyCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public AddHostelCommandHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Esempio n. 6
0
 public SelectAllBuildingQueryHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public SelectFloorsQueryHandler(IHostelDbContext context, IMapper mapper)
 {
     _context = context;
 }
Esempio n. 8
0
 public UpdateWardenCommandHandler(IHostelDbContext context)
 {
     _context = context;
 }
 public SelectFloorByIdQueryHandler(IHostelDbContext context)
 {
     _context = context;
 }
Esempio n. 10
0
 public SelectBedsOnlyQueryHandler(IHostelDbContext context)
 {
     _context = context;
 }
Esempio n. 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;
 }