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