public ActionResult AddSection(SectionViewModel model) { model.DateAdded = DateTime.Now; service.CreateSection(model.ToBllSection()); return(RedirectToAction("Index", "Home")); }
public ActionResult AddSection(SectionViewModel model) { sectionService.CreateSection(model.ToBllSection()); return(RedirectToAction("WorkWithSections", "Section")); }