コード例 #1
0
        public AprCondicionIngresoCollection FetchByQuery(Query qry)
        {
            AprCondicionIngresoCollection coll = new AprCondicionIngresoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public AprCondicionIngresoCollection FetchAll()
        {
            AprCondicionIngresoCollection coll = new AprCondicionIngresoCollection();
            Query qry = new Query(AprCondicionIngreso.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public AprCondicionIngresoCollection FetchByID(object IdCondicionAlIngreso)
        {
            AprCondicionIngresoCollection coll = new AprCondicionIngresoCollection().Where("idCondicionAlIngreso", IdCondicionAlIngreso).Load();

            return(coll);
        }