public async Task <bool> Read(int id)
        {
            try
            {
                HttpResponseMessage responseMessage = await client.GetAsync(string.Format("{0}/{1}/{2}", url, "destino-asociado", id));

                if (responseMessage.IsSuccessStatusCode)
                {
                    var responseData             = responseMessage.Content.ReadAsStringAsync().Result;
                    Destino_Asociado_Web retorno = JsonConvert.DeserializeObject <Destino_Asociado_Web>(responseData);

                    MappingThisFromAnother(retorno);
                    return(true);
                }
                return(false);
            }
            catch (Exception)
            {
                return(false);

                throw;
            }
        }
 private void MappingThisFromAnother(Destino_Asociado_Web objeto)
 {
     this.Id       = objeto.Id;
     this.Destino  = objeto.Destino;
     this.Contrato = objeto.Contrato;
 }