Esempio n. 1
0
 public SellerService(WebSalesContext context)
 {
     _context = context;
 }
 public DepartamentService(WebSalesContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public SalesRecordService(WebSalesContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public DepartmentService(WebSalesContext webSalesContext)
 {
     _webSalesContext = webSalesContext;
 }
Esempio n. 5
0
 public DepartmentsController(WebSalesContext context)
 {
     _context = context;
 }
Esempio n. 6
0
 public SellersController(SellerService sellerService, DepartmentService departmentService, WebSalesContext webSalesContext)
 {
     _sellerService     = sellerService;
     _departmentService = departmentService;
     _webSalesContext   = webSalesContext;
 }