public SalesRecordService(SalesWebExerciseMvcContext context)
 {
     _context = context;
 }
 public SellerService(SalesWebExerciseMvcContext context)
 {
     _context = context;
 }
 // constructor for injection dependency
 public DepartmentsController(SalesWebExerciseMvcContext context)
 {
     _context = context;
 }
 //constructor
 public DepartmentService(SalesWebExerciseMvcContext context)
 {
     _context = context;
 }