Exemplo n.º 1
0
        public NuevoEmprendimiento GetEmprendimiento(string identificador)
        {
            SqlDataReader       dr = Emprendimiento.select_byId(identificador);
            NuevoEmprendimiento p  = null;

            if (dr != null && dr.Read())
            {
                p = cargarEmprendimiento(dr);
            }
            return(p);
        }