public async Task <HttpResponseMessage> Listar()
        {
            try
            {
                var response = _serviceUsuario.ListarUsuario();

                return(await ResponseAsync(response, _serviceUsuario));
            }
            catch (Exception ex)
            {
                return(await ResponseExceptionAsync(ex));
            }
        }