public async Task <bool> ReadPorRut(int rut) { try { HttpResponseMessage responseMessage = await client.GetAsync(string.Format("{0}/{1}/{2}", url, "apoderado", rut)); if (responseMessage.IsSuccessStatusCode) { var responseData = responseMessage.Content.ReadAsStringAsync().Result; Apoderado_Web retorno = JsonConvert.DeserializeObject <Apoderado_Web>(responseData); MappingThisFromAnother(retorno); return(true); } return(false); } catch (Exception) { return(false); throw; } }
public void MappingThisFromAnother(Apoderado_Web objeto) { this.Id = objeto.Id; this.Usuario = objeto.Usuario; }