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

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

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