public ProductsController(BestProductsDbContext db,
                           ICacheService cacheService,
                           IQueueService queueService)
 {
     this._db           = db;
     this._cacheService = cacheService;
     this._queueService = queueService;
 }
Exemplo n.º 2
0
 public Functions(ICacheService cacheService,
                  BestProductsDbContext db)
 {
     this.cacheService = cacheService;
     this._db          = db;
 }