Esempio n. 1
0
 public PersonAppService(
     IPersonDomainService personDomainService,
     IMapper mapper,
     ISmartNotification notification) : base(notification)
 {
     _personDomainService = personDomainService;
     _mapper       = mapper;
     _notification = notification.Invoke();
 }
Esempio n. 2
0
 public BaseValidationService(ISmartNotification notify)
 {
     _notify = notify.Invoke();
 }