public void DeleteNote(Note note)
 {
     StaticNoteDataStore.Delete(note);
 }
 public Note GetNote(int id)
 {
     return(StaticNoteDataStore.Get(id));
 }
 public Note CreateNewNote()
 {
     return(StaticNoteDataStore.Create());
 }
 public IEnumerable <Note> GetAllNotes()
 {
     return(StaticNoteDataStore.GetAll());
 }