示例#1
0
 public StoreLegalPersonService(
     INotifier notifier,
     IUnitOfWork unitOfWork,
     IStoreAddressService storeAddressService,
     IStoreDocumentService storeDocumentService,
     ILegalPersonRepository legalPersonRepository)
     : base(notifier)
 {
     _unitOfWork            = unitOfWork;
     _storeAddressService   = storeAddressService;
     _storeDocumentService  = storeDocumentService;
     _legalPersonRepository = legalPersonRepository;
 }
 public StoreNaturalPersonService(
     INotifier notifier,
     IUnitOfWork unitOfWork,
     IStoreAddressService storeAddressService,
     IStoreDocumentService storeDocumentService,
     INaturalPersonRepository naturalPersonRepository)
     : base(notifier)
 {
     _unitOfWork              = unitOfWork;
     _storeAddressService     = storeAddressService;
     _storeDocumentService    = storeDocumentService;
     _naturalPersonRepository = naturalPersonRepository;
 }