Пример #1
0
 public ElasticSearchInventoryService(ISimpleInventoryService inventories, IHazActivityStreamPipe pipe) : base(pipe)
 {
     _inventories = inventories;
 }
 public ElasticSearchPeopleService(IPublicProfileService profiles, IHazActivityStreamPipe pipe) : base(pipe)
 {
     _profiles = profiles;
 }
Пример #3
0
 public ElasticSearchArchivedPhotosService(SimpleDbContext dbContext, IArchiveService archive, IHazActivityStreamPipe pipe) : base(dbContext, archive, pipe)
 {
 }
 public ElasticSearchPostsService(SimpleDbContext dbContext, IPostService posts, IHazActivityStreamPipe pipe) : base(pipe)
 {
     _dbContext = dbContext;
     _posts     = posts;
 }
Пример #5
0
 public ElasticSearchShopsService(IShopService shops, IHazActivityStreamPipe pipe) : base(pipe)
 {
     _shops = shops;
 }
 public BaseSearchElasticService(IHazActivityStreamPipe pipeline)
 {
     _pipeline = pipeline;
 }
Пример #7
0
 public ElasticSearchArchiveService(SimpleDbContext dbContext, IArchiveService archive, IHazActivityStreamPipe pipe) : base(pipe)
 {
     _dbContext = dbContext;
     _archive   = archive;
 }