public QuestionsController(
     IAmendmentService amendmentService, IEvidenceService evidenceService, UserInfo userInfo)
     : base(userInfo)
 {
     _amendmentService = amendmentService;
     _evidenceService  = evidenceService;
 }
Exemplo n.º 2
0
 public AmendmentController(IAmendmentService amendmentService, IAmendmentBodyService amendmentBodyService, IMapper mapper, IReadOnlyDataService <Language> languageDataService)
 {
     _amendmentService     = amendmentService;
     _amendmentBodyService = amendmentBodyService;
     _mapper = mapper;
     _languageDataService = languageDataService;
 }
Exemplo n.º 3
0
 public ScreenHub(IHttpContextAccessor httpContextAccessor, IAmendmentService amendmentService, IMapper mapper
                  , IReadOnlyDataService <Language> languageService, ISystemSettingService systemSettingService) : base(systemSettingService)
 {
     _httpContextAccessor = httpContextAccessor;
     _amendmentService    = amendmentService;
     _mapper          = mapper;
     _languageService = languageService;
 }
Exemplo n.º 4
0
 public AmendmentsController(IAmendmentService amendmentService, IDataService dataService)
 {
     _amendmentService = amendmentService;
     _dataService      = dataService;
 }
Exemplo n.º 5
0
 public AmendmentController(IAmendmentService service)
 {
     _service = service;
 }
Exemplo n.º 6
0
 public AmendmentsController(IAmendmentService amendmentService, UserInfo userInfo)
     : base(userInfo)
 {
     _amendmentService = amendmentService;
 }
Exemplo n.º 7
0
 public AmendmentHub(IScreenControlService screenControlService, IAmendmentService amendmentService, ISystemSettingService systemSettingService, IMapper mapper) : base(systemSettingService)
 {
     _screenControlService = screenControlService;
     _amendmentService     = amendmentService;
     _mapper = mapper;
 }
 public CachedAmendmentService(IRedisCache cache, IClient client)
 {
     _cache            = cache;
     _amendmentService = new AmendmentService(client);
 }
 public ScreenControlController(IScreenControlService screenControlService, IAmendmentService amendmentService)
 {
     _screenControlService = screenControlService;
     _amendmentService     = amendmentService;
 }