public QuestionsController(
     IAmendmentService amendmentService, IEvidenceService evidenceService, UserInfo userInfo)
     : base(userInfo)
 {
     _amendmentService = amendmentService;
     _evidenceService  = evidenceService;
 }
コード例 #2
0
 public AmendmentController(IAmendmentService amendmentService, IAmendmentBodyService amendmentBodyService, IMapper mapper, IReadOnlyDataService <Language> languageDataService)
 {
     _amendmentService     = amendmentService;
     _amendmentBodyService = amendmentBodyService;
     _mapper = mapper;
     _languageDataService = languageDataService;
 }
コード例 #3
0
ファイル: ScreenHub.cs プロジェクト: AdamLJohnson/Amendment
 public ScreenHub(IHttpContextAccessor httpContextAccessor, IAmendmentService amendmentService, IMapper mapper
                  , IReadOnlyDataService <Language> languageService, ISystemSettingService systemSettingService) : base(systemSettingService)
 {
     _httpContextAccessor = httpContextAccessor;
     _amendmentService    = amendmentService;
     _mapper          = mapper;
     _languageService = languageService;
 }
コード例 #4
0
 public AmendmentsController(IAmendmentService amendmentService, IDataService dataService)
 {
     _amendmentService = amendmentService;
     _dataService      = dataService;
 }
コード例 #5
0
 public AmendmentController(IAmendmentService service)
 {
     _service = service;
 }
コード例 #6
0
 public AmendmentsController(IAmendmentService amendmentService, UserInfo userInfo)
     : base(userInfo)
 {
     _amendmentService = amendmentService;
 }
コード例 #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);
 }
コード例 #9
0
 public ScreenControlController(IScreenControlService screenControlService, IAmendmentService amendmentService)
 {
     _screenControlService = screenControlService;
     _amendmentService     = amendmentService;
 }