Exemplo n.º 1
0
 public Note GetNote(int No)
 {
     if (No <= 0)
     {
         throw new ArgumentException();
     }
     return(_noteDal.GetNote(No));
 }