Пример #1
0
 public Notice GetNotice(int id)
 {
     if (id <= 0)
     {
         throw new ArgumentException();
     }
     return(_noteDal.GetNotice(id));
 }