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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }