public IActionResult PostMove(MoveOrCopy move)
 {
     return(PerformMove(
                move,
                getContentType: i => _contentTypeService.Get(i),
                doMove: (type, i) => _contentTypeService.Move(type, i)));
 }
Beispiel #2
0
 public IActionResult PostMove(MoveOrCopy move) =>
 PerformMove(
     move,
     i => _contentTypeService.Get(i),
     (type, i) => _contentTypeService.Move(type, i));