public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            IAccountsTransactionsDAL accountsList = new AccountsTransactionsDAL();

            return(accountsList.SaveSearchJson(jsonSearch, ScreenId, ScreenName));
        }
        public string GetLastSelectionData(int ScreenId)
        {
            IAccountsTransactionsDAL accountsList = new AccountsTransactionsDAL();

            return(accountsList.GetLastSelectionData(ScreenId));
        }
        //List<AccountsTransactionsEntity> GetAccountsTransactionNameAndType()
        //{
        //    IAccountsTransactionsDAL accountsList = new AccountsTransactionsDAL();
        //     accountsList.GetAccountsTransactionNameAndType().ToList();
        //}
        public List <AccountsTransactionsEntity> GetAccountsTransactionNameAndType()
        {
            IAccountsTransactionsDAL accountsList = new AccountsTransactionsDAL();

            return(accountsList.GetAccountsTransactionNameAndType());
        }
        public string GetDateFormat()
        {
            IAccountsTransactionsDAL accountsList = new AccountsTransactionsDAL();

            return(accountsList.GetDateFormat());
        }
        public List <AccountsTransactionsEntity> GetAccountsTransactionDetails(int ID, string JsonData)
        {
            IAccountsTransactionsDAL accountsDetailList = new AccountsTransactionsDAL();

            return(accountsDetailList.GetAccountsTransactionDetails(ID, JsonData));
        }