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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public TamBiopsiumCollection FetchAll()
        {
            TamBiopsiumCollection coll = new TamBiopsiumCollection();
            Query qry = new Query(TamBiopsium.Schema);

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

            return(coll);
        }