public string GetLastSelectionData(int ScreenId)
        {
            IJournalListBL List = new JournalListBL();

            return(List.GetLastSelectionData(ScreenId));
        }
        public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            IJournalListBL List = new JournalListBL();

            return(List.SaveSearchJson(jsonSearch, ScreenId, ScreenName));
        }
        public List <JournalListViewEntity> getJournalDetails(string JSonData)
        {
            IJournalListBL List = new JournalListBL();

            return(List.getJournalDetails(JSonData));
        }