public SellerService(WebSalesContext context) { _context = context; }
public DepartamentService(WebSalesContext context) { _context = context; }
public SalesRecordService(WebSalesContext context) { _context = context; }
public DepartmentService(WebSalesContext webSalesContext) { _webSalesContext = webSalesContext; }
public DepartmentsController(WebSalesContext context) { _context = context; }
public SellersController(SellerService sellerService, DepartmentService departmentService, WebSalesContext webSalesContext) { _sellerService = sellerService; _departmentService = departmentService; _webSalesContext = webSalesContext; }