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

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

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

            return(coll);
        }