Exemplo n.º 1
0
        public ActionResult UpdateSchedule(ScheduleVM post)
        {
            using (var ctx = new CSEntities())
            {
                ctx.UpdateClassSchedule(post.HelpID, post.STime, post.ETime, post.SelectedValuesCl[0], post.SelectedValuesC[0], post.SelectedValuesT[0]);

                return(RedirectToAction("Schedule", "Home"));
            }
        }