Beispiel #1
0
        public bool DeleteNotice(int id)
        {
            if (id <= 0)
            {
                throw new ArgumentException();
            }

            return(_noteDal.DeleteNotice(id));
        }