public async Task <object> ObterTipoEmail() { var obterTipoEmailCommand = new ObterTipoEmailCommand(); var obterTipoEmailResponse = await _bus.SendCommand(obterTipoEmailCommand); return(_notifications.HasNotifications() ? obterTipoEmailResponse : _mapper.Map <IEnumerable <TipoEmailViewModel> >((IEnumerable <ParametrizacaoTipoEmail>)obterTipoEmailResponse)); }
public async Task <object> Handle(ObterTipoEmailCommand message, CancellationToken cancellationToken) { if (!message.IsValid()) { NotifyValidationErrors(message); return(await Task.FromResult(false)); } try { var client = _httpAppService.CreateClient(_serviceManager.UrlVileve); return(await Task.FromResult(await _httpAppService.OnGet <IEnumerable <ParametrizacaoTipoEmail> >(client, message.RequestId, "v1/dados-complementares/tipos-email"))); } catch (Exception e) { _logger.Log(LogLevel.Error, e, JsonSerializer.Serialize(new { message.RequestId, e.Message })); await _bus.RaiseEvent(new DomainNotification(message.MessageType, "O sistema está momentaneamente indisponível, tente novamente mais tarde.", message)); return(await Task.FromResult(false)); } }