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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
ファイル: PnDptoController.cs プロジェクト: saludnqn/prosane
        public PnDptoCollection FetchAll()
        {
            PnDptoCollection coll = new PnDptoCollection();
            Query            qry  = new Query(PnDpto.Schema);

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