public IEnumerable <NoteModel> GetCourseNotes(string course)
        {
            string email = User.Identity.Name;

            return(NoteModel.getCourseNotes(this.connectionstring, email, course));
        }