public PnLogPlanillaCollection FetchByQuery(Query qry)
        {
            PnLogPlanillaCollection coll = new PnLogPlanillaCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public PnLogPlanillaCollection FetchAll()
        {
            PnLogPlanillaCollection coll = new PnLogPlanillaCollection();
            Query qry = new Query(PnLogPlanilla.Schema);

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

            return(coll);
        }