Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
 public ELRSearchRules(ELRSearchRepository repos, MerlinReadContext merlinReadContext, IUsernameProvider usernameProvider)
 {
     this.repos             = repos;
     this.merlinReadContext = merlinReadContext;
     this.usernameProvider  = usernameProvider;
 }