internal void button_add_cashPayments_Click()
 {
     try {
         if (paymentManagerImpl.addCashPayment())
         {
             paymentManagerImpl.loadAllCashPayments();
             paymentManagerImpl.clearCashSection();
             ShowMessage.success(Common.Messages.Success.Success004);
         }
     } catch (Exception) {
     }
 }