public void createNewTool([FromBody] ToolDTO toolDTO) { try { _toolRepo.addNewTool(toolDTO); } catch { BadRequest(); } }