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

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

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