Ejemplo n.º 1
0
        public RemTablaExamanCollection FetchByQuery(Query qry)
        {
            RemTablaExamanCollection coll = new RemTablaExamanCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public RemTablaExamanCollection FetchAll()
        {
            RemTablaExamanCollection coll = new RemTablaExamanCollection();
            Query qry = new Query(RemTablaExaman.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public RemTablaExamanCollection FetchByID(object IdTablaExamen)
        {
            RemTablaExamanCollection coll = new RemTablaExamanCollection().Where("idTablaExamen", IdTablaExamen).Load();

            return(coll);
        }