예제 #1
0
        public TamBiopsiumCollection FetchByQuery(Query qry)
        {
            TamBiopsiumCollection coll = new TamBiopsiumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public TamBiopsiumCollection FetchAll()
        {
            TamBiopsiumCollection coll = new TamBiopsiumCollection();
            Query qry = new Query(TamBiopsium.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #3
0
        public TamBiopsiumCollection FetchByID(object IdBiopsia)
        {
            TamBiopsiumCollection coll = new TamBiopsiumCollection().Where("idBiopsia", IdBiopsia).Load();

            return(coll);
        }