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