public DataTable GetBankChequeBookEntryApprovalListByAccountIdAll(string accountId)
        {
            BankChequeBookDAL bankChequeBook = new BankChequeBookDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start();
                DataTable dt = bankChequeBook.GetBankChequeBookEntryApprovalListByAccountIdAll(accountId, db);
                db.Stop();

                return dt;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                bankChequeBook = null;
            }
        }