public OutgoingJsonData ChangeNotePosition([FromBody] IncomingNoteRequest note)
        {
            using (var context = new NotesContext(Context, Configuration))
            {
                context.ChangeNotePosition(note);
            }

            return(new OutgoingJsonData {
                Data = ""
            });
        }