Beispiel #1
0
        public IActionResult GetNote(int id)
        {
            Note note = _notesServices.GetNote(id);

            if (note == null)
            {
                return(NotFound());
            }
            else
            {
                return(Ok(note));
            }
        }
Beispiel #2
0
 public IActionResult GetNote(int id)
 {
     return(Ok(_notesServices.GetNote(id)));
 }