Пример #1
0
 public CustomerAddressAppService(
     ICustomerAddressRepository customerAddressRepository,
     IAddressRepository addressRepository,
     ICountryRepository countryRepository,
     IStateOrProvinceRepository stateOrProvinceRepository,
     IDistrictRepository districtRepository,
     ICustomerLookupService customerLookupService)
 {
     _customerAddressRepository = customerAddressRepository;
     _addressRepository         = addressRepository;
     _countryRepository         = countryRepository;
     _stateOrProvinceRepository = stateOrProvinceRepository;
     _districtRepository        = districtRepository;
     _customerLookupService     = customerLookupService;
 }
Пример #2
0
 public StateOrProvinceAppService(IStateOrProvinceRepository repository) : base(repository)
 {
     _repository = repository;
 }