private void BindFullPaymentDetails()
 {
     try
     {
         grdFullPaidMember.DataSource = PaymentController.GetFullPayment(txtFullSearch.Text, LoginUser.ClubId);
         grdFullPaidMember.DataBind();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }