public StoreRepository(ProductionsContext context)
 {
     _context = context;
 }
 public ProductionAreaRepository(ProductionsContext context, IProductionAreaChangedService productionAreaChangedService)
 {
     _context = context;
     _productionAreaChangedService = productionAreaChangedService;
 }