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

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

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

            return(coll);
        }