コード例 #1
0
ファイル: SearchCache.cs プロジェクト: webtrad3r/AliseeksApi
 public SearchCache(IApplicationCache cache, ISearchPostgres db, WebSearchService[] services, IRavenClient raven)
 {
     this.cache       = cache;
     this.db          = db;
     this.raven       = raven;
     this.webServices = services;
 }
コード例 #2
0
 public AliexpressService(IHttpService http, ISearchPostgres db, IRavenClient raven)
     : base(SearchServiceType.Aliexpress)
 {
     this.http  = http;
     this.db    = db;
     this.raven = raven;
 }
コード例 #3
0
 public SearchService(WebSearchService[] services, ISearchPostgres db,
                      IApplicationCache cache, IRavenClient raven, SearchCache searchCache)
 {
     this.raven       = raven;
     this.db          = db;
     this.cache       = cache;
     this.services    = services;
     this.searchCache = searchCache;
 }
コード例 #4
0
 public PriceHistoryJob(ISearchPostgres db)
 {
     this.db = db;
 }