public IActionResult Edit([FromBody] Note note) { try { _services.EditNote(note); return(Ok()); } catch { return(StatusCode(500, new { errorMessage = "Не удалось редактировать заметку" })); } }