public IActionResult PostCopy(MoveOrCopy copy)
 {
     return(PerformCopy(
                copy,
                getContentType: i => _contentTypeService.Get(i),
                doCopy: (type, i) => _contentTypeService.Copy(type, i)));
 }
Beispiel #2
0
 public IActionResult PostCopy(MoveOrCopy copy) =>
 PerformCopy(
     copy,
     i => _contentTypeService.Get(i),
     (type, i) => _contentTypeService.Copy(type, i));