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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public AprCondicionIngresoCollection FetchAll()
        {
            AprCondicionIngresoCollection coll = new AprCondicionIngresoCollection();
            Query qry = new Query(AprCondicionIngreso.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public AprCondicionIngresoCollection FetchByID(object IdCondicionAlIngreso)
        {
            AprCondicionIngresoCollection coll = new AprCondicionIngresoCollection().Where("idCondicionAlIngreso", IdCondicionAlIngreso).Load();

            return(coll);
        }