예제 #1
0
 public bool UpdateNotice(Notice notice)
 {
     if (notice == null)
     {
         throw new ArgumentNullException();
     }
     return(_noticeDal.UpdateNotice(notice));
 }