예제 #1
0
파일: NoteBll.cs 프로젝트: matsterr88/Note
 public bool PostNotice(Notice notice)
 {
     if (notice == null)
     {
         throw new ArgumentException();
     }
     return(_noteDal.PostNotice(notice));
 }