public AppController(IAppRepository appRepo, IAppCategoryRepository appCategoryRepo, IAppIndustryRepository appIndustryRepo)
 {
     appRepository = appRepo;
     appCategoryRepository = appCategoryRepo;
     appIndustryRepository = appIndustryRepo;
 }
 public CategoryController(IAppCategoryRepository appCategoryRepo)
 {
     categoryRepository = appCategoryRepo;
 }