Exemplo n.º 1
0
        public async Task <IActionResult> AddSolutionAsync([FromBody] NewSolutionDto solution)
        {
            var sol = await _solutionService.CreateAsync(solution);

            return(ApiResult(sol));
        }