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

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

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

            return(coll);
        }