public SearchPhotos(ICacheDbContext cacheDbContext)
 {
     this.cacheDbContext = cacheDbContext;
 }
 public ExecutionCache(ICacheDbContext dbctx, BfProductCode productCode)
 {
     _dbctx       = dbctx;
     _productCode = productCode;
     OptimizeManageTable();
 }
示例#3
0
 public ExecutionCache(ICacheDbContext ctx)
 {
     _ctx = ctx;
     OptimizeManageTable();
 }
 public RefreshPhotos(IPhotosFeedService photosFeedService, ICacheDbContext cacheDbContext)
 {
     this.photosFeedService = photosFeedService;
     this.cacheDbContext    = cacheDbContext;
 }
示例#5
0
 public OhlcCache(ICacheDbContext ctx, TimeSpan frameSpan)
 {
     _ctx       = ctx;
     _frameSpan = frameSpan;
 }