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

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

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