public CustomerBrowseVM(IEventAggregator eventAggregator, IMessageService messageService, IUserPrivilege userPrivilege, ICustomerLookupService lookupService) : base(eventAggregator, messageService, userPrivilege) { Title = "Customers"; this.lookupService = lookupService; }
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; }