コード例 #1
0
ファイル: NoteBll.cs プロジェクト: matsterr88/Note
 public Notice GetNotice(int id)
 {
     if (id <= 0)
     {
         throw new ArgumentException();
     }
     return(_noteDal.GetNotice(id));
 }