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 ELRSearchRepository(ElrReadStore readStore)
 {
     this.readStore = readStore;
 }