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

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

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

            return(coll);
        }