public Resultado <VVResultado_Usuario> GetByToken(string token) { var resultado = new Resultado <VVResultado_Usuario>(); try { var url = baseUrl + "/v1/Usuario?token=" + token; var resultadoUsuario = RestCall.Call <VVResultado_Usuario>(url, RestSharp.Portable.Method.GET); if (!resultadoUsuario.Ok) { resultado.Error = resultadoUsuario.Error; return(resultado); } resultado.Return = resultadoUsuario.Return; } catch (Exception e) { resultado.SetError(e); } return(resultado); }
public Result <ResultadoWS_Pregunta> Insertar(ComandoWS_PreguntaNueva comando) { return(RestCall.Call <ResultadoWS_Pregunta>(Request, comando)); }
public ResultadoServicio <string> IniciarSesion(ComandoApp_IniciarSesion comando) { return(RestCall.Call <string>(Request, comando)); }
public ResultadoServicio <string> IniciarSesion(ComandoApp_IniciarSesion comando) { return(RestCall.Call <string>("v1/Usuario/IniciarSesion", Method.PUT, comando)); }
public Result <ResultadoWS_MuniOnlineUsuario> GetUsuario() { return(RestCall.Call <ResultadoWS_MuniOnlineUsuario>(Request)); }
public Result <bool> ValidadoRenaper() { return(RestCall.Call <bool>(Request)); }
public Result <bool> CerrarSesion() { return(RestCall.Call <bool>(Request)); }
public Result <List <ResultadoWS_Aplicacion> > GetAplicacionesEnCascada() { return(RestCall.Call <List <ResultadoWS_Aplicacion> >(Request)); }
public ResultadoServicio <JObject> GetAppData() { return(RestCall.Call <JObject>(Request)); }
public ResultadoServicio <bool> AplicacionBloqueada() { return(RestCall.Call <bool>(Request)); }
public ResultadoServicio <bool> ValidarToken() { return(RestCall.Call <bool>(Request)); }
public ResultadoServicio <ResultadoApp_Usuario> GetUsuario() { return(RestCall.Call <ResultadoApp_Usuario>(Request)); }
public ResultadoServicio <int> GetIdUsuario() { return(RestCall.Call <int>(Request)); }
public ResultadoServicio <bool> CerrarSesion() { return(RestCall.Call <bool>(Request)); }
public Result <ResultadoWS_Pregunta> Actualizar(ComandoWS_PreguntaActualizar comando) { return(RestCall.Call <ResultadoWS_Pregunta>(Request, comando)); }
public Result <bool> Borrar(int id) { return(RestCall.Call <bool>(Request)); }
public Result <List <ResultadoWS_Tema> > GetTemas(int?idAplicacion = null) { return(RestCall.Call <List <ResultadoWS_Tema> >(Request)); }
public Result <string> IniciarSesion(v1.Entities.Comandos.ComandoWS_IniciarSesion comando) { return(RestCall.Call <string>(Request, comando)); }
public Result <List <ResultadoWS_Pregunta> > BuscarPublico(string busqueda) { return(RestCall.Call <List <ResultadoWS_Pregunta> >(Request)); }
public Result <bool> ValidarToken() { return(RestCall.Call <bool>(Request)); }
public Result <ResultadoWS_Pregunta> GetDetalle(int id) { return(RestCall.Call <ResultadoWS_Pregunta>(Request)); }
public Result <bool> EsOperador() { return(RestCall.Call <bool>(Request)); }
public Result <List <ResultadoWS_Pregunta> > GetAll() { return(RestCall.Call <List <ResultadoWS_Pregunta> >(Request)); }
public ResultadoServicio <object> GetCuitConsulta(string cuit) { return(RestCall.Call <object>(Request)); }
public Result <List <ResultadoWS_Pregunta> > Buscar(Consulta_PreguntaPaginada consulta) { return(RestCall.Call <List <ResultadoWS_Pregunta> >(Request, consulta)); }
public Result <List <ResultadoWS_Pregunta> > Top(int?cantidad = null, string app = null) { return(RestCall.Call <List <ResultadoWS_Pregunta> >(Request)); }
public ResultadoServicio <object> GetCuitConsulta(string cuit) { return(RestCall.Call <object>("v1/Tributario/GetCuitConsulta?cuit=" + cuit, Method.GET, null)); }