예제 #1
0
파일: NoteBll.cs 프로젝트: matsterr88/Note
        public bool DeleteNotice(int id)
        {
            if (id <= 0)
            {
                throw new ArgumentException();
            }

            return(_noteDal.DeleteNotice(id));
        }