예제 #1
0
 public CodeController(CodeRules rules, CodeRepository repos, MerlinReadContext readContext, MerlinReadStore readStore)
 {
     this.rules       = rules;
     this.repos       = repos;
     this.readContext = readContext;
     this.readStore   = readStore;
 }
예제 #2
0
 public QuestionController(MerlinReadContext readContext, CodeRepository codes, QuestionService service, QuestionRules rules)
 {
     this.readContext = readContext;
     this.codes       = codes;
     this.service     = service;
     this.rules       = rules;
 }
예제 #3
0
 public LayoutController(LayoutRules rules, MerlinReadContext readContext, LayoutService service, MerlinReadStore readStore, LayoutRepository layoutRepository)
 {
     this.rules            = rules;
     this.service          = service;
     this.readContext      = readContext;
     this.readStore        = readStore;
     this.layoutRepository = layoutRepository;
 }
예제 #4
0
 public OutbreakController(MerlinReadStore readStore, MerlinReadContext readContext, OutbreakRules rules, OutbreakService service, LayoutRepository layoutRepository, AuthenticationService authenticationService, IConfiguration config, EpicomRepository epicomRepository, OutbreakRepository outbreakEventsRepository)
 {
     this.readStore             = readStore;
     this.readContext           = readContext;
     this.rules                 = rules;
     this.service               = service;
     this.layoutRepository      = layoutRepository;
     this.authenticationService = authenticationService;
     this.config                = config;
     this.epicomRepository      = epicomRepository;
     this.outbreakRepository    = outbreakEventsRepository;
 }
예제 #5
0
 public SmartGoalsController(
     MerlinReadStore readStore,
     MerlinReadContext readContext,
     SmartGoalsRepository smartGoalsRepository,
     IUsernameProvider usernameProvider
     )
 {
     this.readStore        = readStore;
     this.readContext      = readContext;
     this.repos            = smartGoalsRepository;
     this.usernameProvider = usernameProvider;
 }
예제 #6
0
 public ELRSearchController(
     ElrReadStore readStore,
     ELRSearchRepository elrRepository,
     ELRSearchService elrService,
     ELRSearchRules elrSearchRules,
     MerlinReadContext readContext,
     ELRReadContext elrReadContext
     )
 {
     this.readStore      = readStore;
     this.repos          = elrRepository;
     this.elrService     = elrService;
     this.rules          = elrSearchRules;
     this.readContext    = readContext;
     this.elrReadContext = elrReadContext;
 }
예제 #7
0
 public TokenController(
     JwtTokenFactory tokenFactory,
     AuthenticationService service,
     ILogger logger,
     IHttpContextAccessor httpContextAccessor,
     IHostingEnvironment hostingEnvironment,
     IConfiguration config,
     MerlinReadContext readContext)
 {
     this.tokenFactory        = tokenFactory;
     this.service             = service;
     this.logger              = logger;
     this.httpContextAccessor = httpContextAccessor;
     this.hostingEnvironment  = hostingEnvironment;
     this.config              = config;
     this.readContext         = readContext;
 }
예제 #8
0
 public SurveyController(
     MerlinReadContext readContext,
     LayoutRepository layoutRepository,
     SurveyService service,
     SurveyRules rules,
     SurveyAnswerRules answerRules,
     MerlinReadStore readStore,
     SurveyAnswerRepository surveyAnswerRepository)
 {
     this.readContext            = readContext;
     this.layoutRepository       = layoutRepository;
     this.service                = service;
     this.rules                  = rules;
     this.answerRules            = answerRules;
     this.readStore              = readStore;
     this.surveyAnswerRepository = surveyAnswerRepository;
 }
예제 #9
0
 public CaseController(MerlinReadStore readStore, MerlinReadContext readContext)
 {
     this.readStore   = readStore;
     this.readContext = readContext;
 }
예제 #10
0
 public CodeRules(MerlinReadContext readContext)
 {
     this.readContext = readContext;
 }
예제 #11
0
 public QuestionRules(MerlinReadContext readContext)
 {
     this.readContext = readContext;
 }
예제 #12
0
 public LayoutRepository(MerlinReadContext readContext, CodeRepository codeRepos)
 {
     this.readContext = readContext;
     this.codeRepos   = codeRepos;
 }
예제 #13
0
 public ObjectMappingRules(MerlinReadContext readContext)
 {
     this.readContext = readContext;
 }
예제 #14
0
 public SurveyAnswerRepository(MerlinReadContext readContext, DataServices dataServices)
 {
     this.readContext  = readContext;
     this.dataServices = dataServices;
 }
예제 #15
0
 public ELRSearchRules(ELRSearchRepository repos, MerlinReadContext merlinReadContext, IUsernameProvider usernameProvider)
 {
     this.repos             = repos;
     this.merlinReadContext = merlinReadContext;
     this.usernameProvider  = usernameProvider;
 }
예제 #16
0
 public LayoutRules(MerlinReadContext readContext)
 {
     this.readContext = readContext;
 }
 public ObjectMappingController(ObjectMappingRules rules, ObjectMappingService service, MerlinReadContext readContext)
 {
     this.rules       = rules;
     this.service     = service;
     this.readContext = readContext;
 }
예제 #18
0
 public OutbreakRepository(MerlinReadStore readStore, MerlinReadContext readContext)
 {
     this.readStore   = readStore;
     this.readContext = readContext;
 }
예제 #19
0
 public EpicomRepository(MerlinReadStore readStore, MerlinReadContext readContext, IConfiguration config)
 {
     this.readStore   = readStore;
     this.readContext = readContext;
     this.config      = config;
 }
 public AuthenticationService(IConfiguration config, MerlinReadContext readContext)
 {
     this.config      = config;
     this.readContext = readContext;
 }
예제 #21
0
 public SurveyRules(MerlinReadContext readContext)
 {
     this.readContext = readContext;
 }
예제 #22
0
 public SurveyAnswerRules(MerlinReadContext readContext, CodeRepository codeRepository)
 {
     this.readContext    = readContext;
     this.codeRepository = codeRepository;
 }
예제 #23
0
 public OutbreakRules(MerlinReadContext readContext)
 {
     this.readContext = readContext;
 }