Example #1
0
 public int AddNote(NewNoteVm note)
 {
     throw new NotImplementedException();
 }
Example #2
0
        public IActionResult AddNote(NewNoteVm model)
        {
            var id = _noteService.AddNote(model);

            return(View());
        }