using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Communicator; using WIDESEAWCS_QuartzJob.DTO; namespace WIDESEAWCS_QuartzJob.StackerCrane.Common { public interface IStackerCraneBase { public bool IsCanSendTask(BaseCommunicator communicator, List DeviceProDTOs, List DeviceProtocolDetailDTOs); public bool IsCanSendTask(BaseCommunicator communicator, List DeviceProDTOs, List DeviceProtocolDetailDTOs, params string[] suffixes); } }