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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public RisPoblacionVulnerableCollection FetchByID(object IdPoblacionVulnerable)
        {
            RisPoblacionVulnerableCollection coll = new RisPoblacionVulnerableCollection().Where("idPoblacionVulnerable", IdPoblacionVulnerable).Load();

            return(coll);
        }