コード例 #1
0
 public TestController(ApplicationDbContext context, IMemoryCache cache, IReportSerVice reportSerVice, IProductConnectAPI productConnectAPI)
 {
     _productConnectAPI = productConnectAPI;
     _reportSerVice     = reportSerVice;
     _cache             = cache;
     _context           = context;
 }
コード例 #2
0
 public ChartController(ApplicationDbContext context, IReportSerVice reportSerVice)
 {
     _reportSerVice = reportSerVice;
     _context       = context;
 }
コード例 #3
0
 public HomeController(IReportSerVice reportSerVice)
 {
     _reportSerVice = reportSerVice;
 }