public async Task <IActionResult> CreateNewNote(int id, string note)
        {
            var newNotes = await _staffService.CreateNewNote(id, note);

            return(Ok(newNotes));
        }