using WIDESEA_DTO; using WIDESEA_DTO.AGV; using WIDESEA_Model.Models.AGV; using WIDESEA_StorageSocketServices; namespace WIDESEA_IStorageTaskServices; public interface IDt_TaskService : IService { Dt_Task_Hty CreateHistoricalTask(Dt_Task task, bool isHand = false); bool Delete(int id); WebResponseContent TaskMoveHty(Dt_Task task); WebResponseContent CompleteOutboundTask(Dt_Task task); WebResponseContent CompleteInboundTask(Dt_Task task); WebResponseContent CompleteRelocationboundTask(Dt_Task task); }