public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            ICashBankStatementBL pBL = new CashBankStatementBL();

            return(pBL.SaveSearchJson(jsonSearch, ScreenId, ScreenName));
        }
        public string GetLastSelectionData(int ScreenId)
        {
            ICashBankStatementBL pBL = new CashBankStatementBL();

            return(pBL.GetLastSelectionData(ScreenId));
        }
        public List <CashBankStatementEntity> GetAccountList()
        {
            ICashBankStatementBL AccountList = new CashBankStatementBL();

            return(AccountList.GetBankAccountList());
        }
        /// <summary>
        /// GetAccountDetailList
        /// </summary>
        /// <param name="CashBankStatementID"></param>
        /// <param name="jsondata"></param>
        /// <returns></returns>
        public List <CashBankStatementEntity> GetAccountDetailList(int CashBankStatementID, string jsondata)
        {
            ICashBankStatementBL AccountDetailList = new CashBankStatementBL();

            return(AccountDetailList.GetAccountDetailList(CashBankStatementID, jsondata));
        }
        /// <summary>
        /// GetAccountList
        /// </summary>
        /// <returns></returns>
        ///
        public List <Cash_and_Bank_Statement> GetExportDataList(int CashBankStatementID, string jsondata, string FileName)
        {
            ICashBankStatementBL exportdata = new CashBankStatementBL();

            return(exportdata.GetExportDataList(CashBankStatementID, jsondata, FileName));
        }