예제 #1
0
 public List <Note> GetNoteProc()
 {
     try
     {
         List <Note> _note = inoteDAO.GetNotes();
         return(_note);
     }
     catch (Exception e)
     {
         throw new Exception();
     }
 }
예제 #2
0
 //READ
 public IEnumerable <Note> GetNoteProc()
 {
     try
     {
         IEnumerable <Note> _note = inoteDAO.GetNotes();
         return(_note);
     }
     catch (Exception e)
     {
         throw new Exception();
     }
 }