Ejemplo n.º 1
0
 public void AddNotice(NoticeInfo noticeInfo)
 {
     try
     {
         NoticeEntity entity = new NoticeEntity();
         entity.Id          = Guid.NewGuid().ToString("N");
         entity.Name        = noticeInfo.Name;
         entity.Title       = noticeInfo.Title;
         entity.IsHasDetail = noticeInfo.IsHasDetail;
         entity.Message     = noticeInfo.Message;
         entity.IsForeRed   = noticeInfo.IsForeRed;
         entity.IsForeBold  = noticeInfo.IsForeBold;
         entity.StartTime   = noticeInfo.StartTime;
         entity.EndTime     = noticeInfo.EndTime;
         entity.IsEnd       = noticeInfo.IsEnd;
         NoticeManager manager = new NoticeManager(DbAccess);
         manager.AddNotice(entity);
         noticeInfo.Id = entity.Id;
     }
     catch (Exception ex)
     {
         throw HandleException("Notice", "Add", ex);
     }
 }
Ejemplo n.º 2
0
 public void AddNotice(NoticeInfo noticeInfo)
 {
     try
     {
         NoticeEntity entity = new NoticeEntity();
         entity.Id = Guid.NewGuid().ToString("N");
         entity.Name = noticeInfo.Name;
         entity.Title = noticeInfo.Title;
         entity.IsHasDetail = noticeInfo.IsHasDetail;
         entity.Message = noticeInfo.Message;
         entity.IsForeRed = noticeInfo.IsForeRed;
         entity.IsForeBold = noticeInfo.IsForeBold;
         entity.StartTime = noticeInfo.StartTime;
         entity.EndTime = noticeInfo.EndTime;
         entity.IsEnd = noticeInfo.IsEnd;
         NoticeManager manager = new NoticeManager(DbAccess);
         manager.AddNotice(entity);
         noticeInfo.Id = entity.Id;
     }
     catch (Exception ex)
     {
         throw HandleException("Notice", "Add", ex);
     }
 }
Ejemplo n.º 3
0
        public void ModifyNotice(NoticeInfo noticeInfo)
        {
            try
            {
                using (ILHDBTran tran = BeginTran())
                {
                    NoticeManager manager = new NoticeManager(tran);

                    NoticeEntity entity = manager.GetNotice(noticeInfo.Id);
                    if (entity == null)
                    {
                        throw new ArgumentNullException("通知数据不存在!!");
                    }
                    entity.Name = noticeInfo.Name;
                    entity.Title = noticeInfo.Title;
                    entity.IsHasDetail = noticeInfo.IsHasDetail;
                    entity.Message = noticeInfo.Message;
                    entity.IsForeRed = noticeInfo.IsForeRed;
                    entity.IsForeBold = noticeInfo.IsForeBold;
                    entity.StartTime = noticeInfo.StartTime;
                    entity.EndTime = noticeInfo.EndTime;
                    entity.IsEnd = noticeInfo.IsEnd;
                    manager.ModifyNotice(entity);
                    tran.Commit();
                }
            }
            catch (Exception ex)
            {
                throw HandleException("Notice", "Modify", ex);
            }
        }