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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public DDGeneralParemeterCollection FetchByID(object ParamID)
        {
            DDGeneralParemeterCollection coll = new DDGeneralParemeterCollection().Where("ParamID", ParamID).Load();

            return(coll);
        }