public CompanyAddressesController(ICompanyRepository companyRepository, ICompanyAddressCategoryRepository companyaddresscategoryRepository, ICountryRepository countryRepository, IStateRepository stateRepository, ICompanyAddressRepository companyaddressRepository)
 {
     this.companyRepository = companyRepository;
     this.companyaddresscategoryRepository = companyaddresscategoryRepository;
     this.countryRepository = countryRepository;
     this.stateRepository = stateRepository;
     this.companyaddressRepository = companyaddressRepository;
 }
Example #2
0
 static CompanyAddressService()
 {
     repository = new CompanyAddressRepository();
 }
Example #3
0
 public CompanyAddressController(ICompanyAddressRepository repository)
     : base(repository)
 {
 }