public IActionResult updateTool([FromBody] ToolDTO toolDTO) { bool isSuccess = _toolRepo.updateTool(toolDTO); if (!isSuccess) { return(NotFound("No no no")); } return(Ok("success")); }