Esempio n. 1
0
        //private readonly IOptions<AppSettings> _appSettings;

        public ReportController(ApplicationDbContext dbContext, IWebHostEnvironment iwebhost, IReportService reportService, IProductService productService, IPembelianService pembelianService, IPenjualanService penjualanService)
        {
            _iwebhost         = iwebhost;
            _reportService    = reportService;
            _productService   = productService;
            _penjualanService = penjualanService;
            _pembelianService = pembelianService;
            _dbContext        = dbContext;
        }
Esempio n. 2
0
 public PembelianController(IPembelianService _service)
 {
     service = _service;
 }