public HttpResponseExceptionFilter(IHandlerError handlerError)
 {
     _handlerError = handlerError;
 }
Esempio n. 2
0
 public AccountService(IUnitOfWork unitOfWork, IEmailService emailService, IHandlerError handlerError)
 {
     _unitOfWork   = unitOfWork;
     _emailService = emailService;
     _handlerError = handlerError;
 }