Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
 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;
 }