private void BtnSellerReverseDispute_Click(object sender, System.EventArgs e)
		{
			try
			{
				TxtStatus.Text = "";

				SellerReverseDisputeCall apicall = new SellerReverseDisputeCall(Context);
				apicall.SellerReverseDispute(TxtDisputeId.Text, (DisputeResolutionReasonCodeType) Enum.Parse(typeof(DisputeResolutionReasonCodeType), CboReason.SelectedItem.ToString()));
	
				TxtStatus.Text = apicall.ApiResponse.Ack.ToString();

			}
			catch(Exception ex)
			{
				MessageBox.Show(ex.Message);
			}

		}