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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public PnIndicadoresGlobaleCollection FetchByID(object IdIndicadoresGlobales)
        {
            PnIndicadoresGlobaleCollection coll = new PnIndicadoresGlobaleCollection().Where("id_indicadores_globales", IdIndicadoresGlobales).Load();

            return(coll);
        }