예제 #1
0
        public PnRelPrestacionXDatoReportableCollection FetchByQuery(Query qry)
        {
            PnRelPrestacionXDatoReportableCollection coll = new PnRelPrestacionXDatoReportableCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public PnRelPrestacionXDatoReportableCollection FetchAll()
        {
            PnRelPrestacionXDatoReportableCollection coll = new PnRelPrestacionXDatoReportableCollection();
            Query qry = new Query(PnRelPrestacionXDatoReportable.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #3
0
        public PnRelPrestacionXDatoReportableCollection FetchByID(object IdPrestacionXDatoReportable)
        {
            PnRelPrestacionXDatoReportableCollection coll = new PnRelPrestacionXDatoReportableCollection().Where("idPrestacionXDatoReportable", IdPrestacionXDatoReportable).Load();

            return(coll);
        }