/// <summary>
 /// This method is responsible for Removing notes from the Dictionairy
 /// based on the unique id/key
 /// </summary>
 /// <param name="id"></param>
 public void Remove(int id)
 {
     _noteData.DeleteNoteText(id);
     _noteForms.Remove(id);
 }