Exemple #1
0
        private void btnRevoke_Click(object sender, EventArgs e)
        {
            try
            {
                this.btnRevoke.Enabled = false;

                _accountService.AccountFundRevokeProcess();

                BindOperationInfo();
            }
            catch (Exception ex)
            {
                DXMessage.ShowError(ex.Message);
            }
            finally
            {
                this.btnRevoke.Enabled = true;
            }
        }