Beispiel #1
0
        public IActionResult AddSelection([FromBody] AddSelectionInput input)
        {
            int id = _selectionService.Add(input);

            return(Created("", new { id }));
        }