public IActionResult AddSelection([FromBody] AddSelectionInput input) { int id = _selectionService.Add(input); return(Created("", new { id })); }