public async Task<IActionResult> AddSection(AddSectionModel model) { var section = new Data.Models.Section() { Title = model.Title, Description = model.Description }; await _sectionService.Create(section); return RedirectToAction("Index", "Section"); }