From f56441867f2cc77567f97a92348a5d878f0dca05 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期四, 12 三月 2026 18:24:15 +0800
Subject: [PATCH] Add AGENTS instructions and updates

---
 Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/StackerCraneJob/CommonStackerCraneJob.cs |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/StackerCraneJob/CommonStackerCraneJob.cs b/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/StackerCraneJob/CommonStackerCraneJob.cs
index c9f777a..5a8506e 100644
--- a/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/StackerCraneJob/CommonStackerCraneJob.cs
+++ b/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/StackerCraneJob/CommonStackerCraneJob.cs
@@ -10,6 +10,8 @@
 using WIDESEAWCS_QuartzJob;
 using WIDESEAWCS_QuartzJob.StackerCrane;
 using WIDESEAWCS_Tasks.StackerCraneJob;
+using WIDESEA_Core;
+using WIDESEAWCS_QuartzJob.Service;
 
 namespace WIDESEAWCS_Tasks
 {
@@ -28,14 +30,15 @@
             ITaskService taskService,
             ITaskExecuteDetailService taskExecuteDetailService,
             ITaskRepository taskRepository,
-            WIDESEAWCS_QuartzJob.Service.IRouterService routerService)
+            IRouterService routerService,
+            HttpClientHelper httpClientHelper)
         {
             _taskService = taskService;
             _taskExecuteDetailService = taskExecuteDetailService;
             _taskRepository = taskRepository;
 
             _config = LoadConfig();
-            _taskSelector = new StackerCraneTaskSelector(taskService, routerService);
+            _taskSelector = new StackerCraneTaskSelector(taskService, routerService, httpClientHelper);
             _commandBuilder = new StackerCraneCommandBuilder(taskService, routerService, _config);
         }
 

--
Gitblit v1.9.3