private void MappingThisFromAnother(Servicio_Web objeto) { this.Id = objeto.Id; this.Nombre = objeto.Nombre; this.Descripcion = objeto.Descripcion; this.Valor = objeto.Valor; }
public async Task <bool> Read(int id) { try { HttpResponseMessage responseMessage = await client.GetAsync(string.Format("{0}/{1}/{2}", url, "servicio", id)); if (responseMessage.IsSuccessStatusCode) { var responseData = responseMessage.Content.ReadAsStringAsync().Result; Servicio_Web retorno = JsonConvert.DeserializeObject <Servicio_Web>(responseData); MappingThisFromAnother(retorno); return(true); } return(false); } catch (Exception) { return(false); throw; } }