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

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

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

            return(coll);
        }