public PollingStation(
     IPollingStationService pollingStationService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _pollingStationService = pollingStationService;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
示例#2
0
 public PollingStationAssignmentHandler(IPollingStationService pollingStationService, IOptions <PollingStationsOptions> options)
 {
     _pollingStationService = pollingStationService;
     _options = options.Value;
 }
 public SectieQueryHandler(IPollingStationService svService)
 {
     _pollingStationService = svService;
 }
示例#4
0
 public RaspunsQueryHandler(IPollingStationService svService)
 {
     _pollingStationService = svService;
 }
 public PollingStationQueryHandler(IPollingStationService pollingStationService)
 {
     _pollingStationService = pollingStationService;
 }