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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }