示例#1
0
 public EmployeesController(AspNetMVCContext context)
 {
     _context = context;
 }
 public DepartmentService(AspNetMVCContext context)
 {
     _context = context;
 }
 public SellerService(AspNetMVCContext context)
 {
     _context = context;
 }
 public SalesRecordService(AspNetMVCContext context)
 {
     _context = context;
 }
 public DepartmentsController(AspNetMVCContext context)
 {
     _context = context;
 }