public List <Devoluciones> ListarGuias(string ot) { List <Devoluciones> lista = new List <Devoluciones>(); Conexion con = new Conexion(); SqlCommand cmd = con.AbrirConexionDespacho(); if (cmd != null) { cmd.CommandText = "Desp_Listar_Guias"; cmd.CommandType = System.Data.CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@OT", ot); SqlDataReader reader = cmd.ExecuteReader(); while (reader.Read()) { Devoluciones des = new Devoluciones(); des.guia = reader["NOFOLIOGUIACAB"].ToString(); des.sucursal = reader["sucursal"].ToString(); int despc = Convert.ToInt32(reader["CANTIDADTIPOELEMENTO"].ToString()); des.despachado = despc.ToString("N0").Replace(",", "."); DateTime fdesp = Convert.ToDateTime(reader["FECHAIMPRESIONGUIACAB"].ToString()); des.FechaDespacho = fdesp.ToString("dd/MM/yyyy HH:mm"); lista.Add(des); } } con.CerrarConexion(); return(lista); }