public IList <string> GetRequestTextList(DateTime fromTime) { NoticeManager noticeManager = new NoticeManager(DbAccess); IList <NoticeEntity> list = noticeManager.GetNoticeListFrom(fromTime); IList <string> rtn = new List <string>(); foreach (NoticeEntity entity in list) { rtn.Add("transType=" + entity.TranType + "&transMessage=" + entity.ResponseText); } return(rtn); }
public IList<string> GetRequestTextList(DateTime fromTime) { NoticeManager noticeManager = new NoticeManager(DbAccess); IList<NoticeEntity> list = noticeManager.GetNoticeListFrom(fromTime); IList<string> rtn = new List<string>(); foreach (NoticeEntity entity in list) { rtn.Add("transType=" + entity.TranType + "&transMessage=" + entity.ResponseText); } return rtn; }