public async Task <IActionResult> CreateSelection([FromQuery] SelectionAddDto selectionAddDto) { selectionAddDto.NumberOfSelection = 0; await _selectionService.AddAsync(_mapper.Map <Selection>(selectionAddDto)); return(Created("", selectionAddDto)); }