예제 #1
0
 public bool PostNote(Note note)
 {
     if (note == null)
     {
         throw new ArgumentException();
     }
     return(_noteDal.PostNote(note));
 }