public bool Follow(string id)
        {
            var userId  = this.User.Identity.GetUserId();
            var service = new TeacherService(userId);

            return(service.AddTeacherToFollowing(id));
        }