public async Task <object> ObterPerfilUsuario() { var obterPerfilUsuarioCommand = new ObterPerfilUsuarioCommand(); var obterPerfilUsuarioResponse = await _bus.SendCommand(obterPerfilUsuarioCommand); return(_notifications.HasNotifications() ? obterPerfilUsuarioResponse : _mapper.Map <IEnumerable <PerfilUsuarioViewModel> >((IEnumerable <ParametrizacaoPerfilUsuario>)obterPerfilUsuarioResponse)); }
public async Task <object> Handle(ObterPerfilUsuarioCommand 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 <ParametrizacaoPerfilUsuario> >(client, message.RequestId, "v1/dados-complementares/perfis-usuario"))); } 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)); } }