예제 #1
0
 public ActionResult <Check> CreateMaterial(Check check)
 {
     _checkService.AddCheck(check);
     return(CreatedAtAction("GetMaterial", new { id = check.Id }, check));
 }