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

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

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