using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Win_in.Sfs.Wms.Job.Application.Contracts; public interface ICountJobAppService : ISfsJobAppServiceBase { //Task HandleCountJobAsync(Guid guid, CountJobDTO dto); Task> CreateWithConditionAsync(CountJobCreateRequestInput input); Task CancelByCountPlanAsync(string countPlanNumber); Task CloseByCountPlanAsync(string countPlanNumber); }