public IList <CommentInfo> GetCommentsByJournalIds(string journalIds) { return(CBO.FillCollection <CommentInfo>(_dataService.Journal_Comment_ListByJournalIds(journalIds))); }
// Journal Comments public IList <CommentInfo> GetCommentsByJournalIds(List <int> journalIdList) { var journalIds = journalIdList.Aggregate("", (current, journalId) => current + journalId + ";"); return(CBO.FillCollection <CommentInfo>(_dataService.Journal_Comment_ListByJournalIds(journalIds))); }