private bool Delete()
        {
            bool result = true;

            result = SupplierTermsEx.Delete(_TermsId);

            if (!result)
            {
                MessageBox.Show("Cannot delete...the record might be in use!", "Delete Warning");
            }

            return(result);
        }