public UpdateNaturalPersonService(
     INotifier notifier,
     IUnitOfWork unitOfWork,
     IUpdateAddressService updateAddressService,
     IUpdateDocumentService updateDocumentService,
     INaturalPersonRepository naturalPersonRepository)
     : base(notifier)
 {
     _unitOfWork              = unitOfWork;
     _updateAddressService    = updateAddressService;
     _updateDocumentService   = updateDocumentService;
     _naturalPersonRepository = naturalPersonRepository;
 }
 public UpdateLegalPersonService(
     INotifier notifier,
     IUnitOfWork unitOfWork,
     IUpdateAddressService updateAddressService,
     IUpdateDocumentService updateDocumentService,
     ILegalPersonRepository legalPersonRepository)
     : base(notifier)
 {
     _unitOfWork            = unitOfWork;
     _updateAddressService  = updateAddressService;
     _updateDocumentService = updateDocumentService;
     _legalPersonRepository = legalPersonRepository;
 }