public ModeloCliente CarregaModeloCliente() { ModeloCliente modelo = new ModeloCliente(); SqlCommand cmd = new SqlCommand(); cmd.Connection = conexao.ObjetoConexao; cmd.CommandText = "SELECT TOP(12) con_numero, con_CpfCnpj, con_fila FROM Consulta order by con_CpfCnpj"; conexao.Conectar(); SqlDataReader registro = cmd.ExecuteReader(); if (registro.HasRows) { registro.Read(); modelo.ConCod = Convert.ToInt32(registro["con_id"]); modelo.ConCnpjCpf = Convert.ToString(registro["con_cnpjcpf"]); modelo.ConTel = Convert.ToString(registro["con_tel"]); modelo.ConFila = Convert.ToString(registro["con_fila"]); } conexao.Desconecta(); return(modelo); }