コード例 #1
0
ファイル: SysPerfilController.cs プロジェクト: luchito76/ris
        public SysPerfilCollection FetchByQuery(Query qry)
        {
            SysPerfilCollection coll = new SysPerfilCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
ファイル: SysPerfilController.cs プロジェクト: luchito76/ris
        public SysPerfilCollection FetchAll()
        {
            SysPerfilCollection coll = new SysPerfilCollection();
            Query qry = new Query(SysPerfil.Schema);

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