public UpdateRoomCommandHandler(IHostelDbContext context) { _context = context; }
public AddWardenCommandHandler(IHostelDbContext context) { _context = context; }
public UpdateFloorCommandHandler(IHostelDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public AddRoomOnlyCommandHandler(IHostelDbContext context) { _context = context; }
public AddHostelCommandHandler(IHostelDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public SelectAllBuildingQueryHandler(IHostelDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public SelectFloorsQueryHandler(IHostelDbContext context, IMapper mapper) { _context = context; }
public UpdateWardenCommandHandler(IHostelDbContext context) { _context = context; }
public SelectFloorByIdQueryHandler(IHostelDbContext context) { _context = context; }
public SelectBedsOnlyQueryHandler(IHostelDbContext context) { _context = context; }
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; }