Exemple #1
0
        public ActionResult Create(Course course, IEnumerable <Guid> sharewith)
        {
            course.Owner = _UserService.GetCurrentUser().Username;
            var id = _Storage.AddCourse(course);

            _Storage.UpdateCourseUsers(id, sharewith);

            return(RedirectToAction("Index"));
        }