Beispiel #1
0
 public MemberSearchService(
     Func <IMemberRepository> repositoryFactory
     , IMemberService memberService
     , IIndexedMemberSearchService indexedSearchService
     , IPlatformMemoryCache platformMemoryCache
     )
 {
     _repositoryFactory    = repositoryFactory;
     _memberService        = memberService;
     _indexedSearchService = indexedSearchService;
     _platformMemoryCache  = platformMemoryCache;
 }
Beispiel #2
0
 public ExportImportMemberSearchService(Func <IMemberRepository> repositoryFactory, IMemberService memberService, IIndexedMemberSearchService indexedSearchService, IPlatformMemoryCache platformMemoryCache)
     : base(repositoryFactory, memberService, indexedSearchService, platformMemoryCache)
 {
 }