Esempio n. 1
0
 public TestController(ApplicationDbContext context, IMemoryCache cache, IReportSerVice reportSerVice, IProductConnectAPI productConnectAPI)
 {
     _productConnectAPI = productConnectAPI;
     _reportSerVice     = reportSerVice;
     _cache             = cache;
     _context           = context;
 }
Esempio n. 2
0
 public ChartController(ApplicationDbContext context, IReportSerVice reportSerVice)
 {
     _reportSerVice = reportSerVice;
     _context       = context;
 }
Esempio n. 3
0
 public HomeController(IReportSerVice reportSerVice)
 {
     _reportSerVice = reportSerVice;
 }