コード例 #1
0
        public PnPermisosSesionCollection FetchByQuery(Query qry)
        {
            PnPermisosSesionCollection coll = new PnPermisosSesionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public PnPermisosSesionCollection FetchAll()
        {
            PnPermisosSesionCollection coll = new PnPermisosSesionCollection();
            Query qry = new Query(PnPermisosSesion.Schema);

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