Esempio n. 1
0
        public AutPresupuestoCollection FetchByQuery(Query qry)
        {
            AutPresupuestoCollection coll = new AutPresupuestoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public AutPresupuestoCollection FetchAll()
        {
            AutPresupuestoCollection coll = new AutPresupuestoCollection();
            Query qry = new Query(AutPresupuesto.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public AutPresupuestoCollection FetchByID(object IdPresupuesto)
        {
            AutPresupuestoCollection coll = new AutPresupuestoCollection().Where("idPresupuesto", IdPresupuesto).Load();

            return(coll);
        }