示例#1
0
 public IActionResult AddSection([FromBody] Section model)
 {
     _repo.AddSection(model);
     return(new OkObjectResult(new { sectionid = model.SectionId }));
 }