Пример #1
0
        public TResultDetailDeletedCollection FetchByQuery(Query qry)
        {
            var coll = new TResultDetailDeletedCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public TResultDetailDeletedCollection FetchAll()
        {
            var coll = new TResultDetailDeletedCollection();
            var qry  = new Query(TResultDetailDeleted.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #3
0
        public TResultDetailDeletedCollection FetchByID(object Id)
        {
            TResultDetailDeletedCollection coll = new TResultDetailDeletedCollection().Where("Id", Id).Load();

            return(coll);
        }