public DoctorNotes PutNoteInfo(int id, [FromBody] DoctorNotes note)
        {
            _context.Entry(note).State = EntityState.Modified;
            _context.SaveChanges();

            return(note);
        }
        public DoctorNotes PostNewNote([FromBody] DoctorNotes note)
        {
            _context.DoctorNotes.Add(note);
            _context.SaveChanges();

            return(note);
        }