예제 #1
0
        public ActionResult CreateNewTask([FromBody] TaskDto task)
        {
            _backgroundTaskQueue.QueueBackgroundWorkItem(x => _engineService.Process(task.TaskId));

            return(Ok());
        }