示例#1
0
        public BdsHematologiumCollection FetchByQuery(Query qry)
        {
            BdsHematologiumCollection coll = new BdsHematologiumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public BdsHematologiumCollection FetchAll()
        {
            BdsHematologiumCollection coll = new BdsHematologiumCollection();
            Query qry = new Query(BdsHematologium.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public BdsHematologiumCollection FetchByID(object IdHematologia)
        {
            BdsHematologiumCollection coll = new BdsHematologiumCollection().Where("idHematologia", IdHematologia).Load();

            return(coll);
        }