public CompanyController(ICompanyAppService companyAppService, ICompanyAuthAppService companyAuthAppService, IContactAppService contactAppService, ICompanyIndustryAppService companyIndustryAppService, IUserAppService userAppService)
 {
     _companyService            = companyAppService;
     _companyAuthAppService     = companyAuthAppService;
     _contactAppService         = contactAppService;
     _companyIndustryAppService = companyIndustryAppService;
     _userAppService            = userAppService;
 }
 public CompanyIndustryController(ICompanyIndustryAppService companyIndustryAppService)
 {
     CompanyIndustryAppService = companyIndustryAppService;
 }