/// <summary>
        /// Retrieve the Table Description for the current table
        /// </summary>
        /// <param name="tableName"></param>
        /// <returns></returns>
        private string GetTableDescription(string tableName)
        {
            DataTable descriptionTable = _metadataAccess.GetTableDescription();
            string    description      = string.Empty;

            //parse through each row of the table to fidn the current table description
            foreach (DataRow row in descriptionTable.Rows)
            {
                if (row["TABLE_NAME"].ToString() == tableName)
                {
                    description = row["value"].ToString();
                    break;
                }
            }

            return(description);
        }