Exemplo n.º 1
0
        public static async Task <string> Actualizar(ClienteModel cliente)
        {
            try
            {
                using (HttpClient client = new HttpClient())
                {
                    var uri = new Uri(URLAPI.Cliente() + "ActualizarCliente");

                    var json = JsonConvert.SerializeObject(
                        new
                    {
                        Cedula           = cliente.Cedula,
                        Nombre           = cliente.Nombre,
                        Telefono         = cliente.Telefono,
                        Email            = cliente.Email,
                        Estado           = cliente.Estado,
                        Direccion        = cliente.Direccion,
                        Usuario_Creacion = cliente.Usuario_Creacion,
                        Fecha_Creacion   = cliente.Fecha_Creacion
                    }
                        );

                    var content = new StringContent(json, Encoding.UTF8, "application/json");

                    HttpResponseMessage response = client.PostAsync(uri, content).Result;
                    string resultado             = await response.Content.ReadAsStringAsync();

                    return(resultado);
                }
            }
            catch (WebException wex)
            {
                throw wex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Exemplo n.º 2
0
        public static async Task <ObservableCollection <ClienteModel> > SeleccionarActivos()
        {
            try
            {
                using (HttpClient client = new HttpClient())
                {
                    var uri = new Uri(URLAPI.Cliente() + "SeleccionarClientesActivos");

                    HttpResponseMessage response = client.GetAsync(uri).Result;
                    string resultado             = await response.Content.ReadAsStringAsync();

                    return(new ObservableCollection <ClienteModel>(JsonConvert.DeserializeObject <ClienteModel[]>(resultado).ToList()));
                }
            }
            catch (WebException wex)
            {
                throw wex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Exemplo n.º 3
0
        public static async Task <ClienteModel> SeleccionarPorCodigo(string codigo)
        {
            try
            {
                using (HttpClient client = new HttpClient())
                {
                    var uri = new Uri(URLAPI.Cliente() + "SeleccionarClientesPorCodigo?codigo=" + codigo);

                    HttpResponseMessage response = client.GetAsync(uri).Result;
                    string resultado             = await response.Content.ReadAsStringAsync();

                    return(JsonConvert.DeserializeObject <ClienteModel>(resultado));
                }
            }
            catch (WebException wex)
            {
                throw wex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }