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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public BdsTipoExclusionCollection FetchByID(object IdTipoExclusion)
        {
            BdsTipoExclusionCollection coll = new BdsTipoExclusionCollection().Where("idTipoExclusion", IdTipoExclusion).Load();

            return(coll);
        }