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

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

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

            return(coll);
        }