public Destino buscarPorId(int id) { Destino returnDestino = new Destino(); DataTable getReturnDestino = getReturn.GetDestinoById(id); if (getReturnDestino.Rows.Count > 0) { returnDestino.DestinoId = Convert.ToInt32(getReturnDestino.Rows[0]["DestinoId"]); returnDestino.Nome = getReturnDestino.Rows[0]["Nome"].ToString(); } return(returnDestino); }