public async Task <ActionResult <CommandOutput> > EditCommandOutput([FromBody] CommandOutput CommandOutput)
 {
     try
     {
         return(await _service.EditCommandOutput(CommandOutput));
     }
     catch (ControllerNotFoundException e)
     {
         return(NotFound(e.Message));
     }
     catch (ControllerBadRequestException e)
     {
         return(BadRequest(e.Message));
     }
 }