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