public SalesReportController(ISalesReportService orderService, IOrderService oService, IBillService bService, IDistributorService distributorService) { this._orderService = orderService; this._oService = oService; this._billService = bService; this._distributorService = distributorService; }
public DealerShipController(ISalesReportService salesReportService) { _salesReportService = salesReportService ?? throw new ArgumentNullException(nameof(salesReportService)); }
public SalesReportController(ISalesReportService salesReportService) { _salesReportService = salesReportService; }