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