Ejemplo n.º 1
0
        public PnLogPrestacionCollection FetchByQuery(Query qry)
        {
            PnLogPrestacionCollection coll = new PnLogPrestacionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public PnLogPrestacionCollection FetchAll()
        {
            PnLogPrestacionCollection coll = new PnLogPrestacionCollection();
            Query qry = new Query(PnLogPrestacion.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public PnLogPrestacionCollection FetchByID(object IdLogPrestacion)
        {
            PnLogPrestacionCollection coll = new PnLogPrestacionCollection().Where("id_log_prestacion", IdLogPrestacion).Load();

            return(coll);
        }