public ActionResult CreateNewTask([FromBody] TaskDto task) { _backgroundTaskQueue.QueueBackgroundWorkItem(x => _engineService.Process(task.TaskId)); return(Ok()); }