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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public AprPercentilesPesoLongitudCollection FetchByID(object Id)
        {
            AprPercentilesPesoLongitudCollection coll = new AprPercentilesPesoLongitudCollection().Where("id", Id).Load();

            return(coll);
        }