Exemple #1
0
        public PnAltumCollection FetchByQuery(Query qry)
        {
            PnAltumCollection coll = new PnAltumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public PnAltumCollection FetchAll()
        {
            PnAltumCollection coll = new PnAltumCollection();
            Query             qry  = new Query(PnAltum.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public PnAltumCollection FetchByID(object IdAlta)
        {
            PnAltumCollection coll = new PnAltumCollection().Where("id_alta", IdAlta).Load();

            return(coll);
        }