コード例 #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;
        }
コード例 #2
0
 public PenjualanController(IPenjualanService _service, IUserService userService)
 {
     _userService = userService;
     service      = _service;
 }
コード例 #3
0
 public OrderPenjualanController(IPenjualanService _service)
 {
     service = _service;
 }