using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.MesOut; public interface IMesOutManager : IDomainService { Task> GetToBeProcessedListAsync(); Task UpdateProcessedListAsync(List entities); Task UpdateProcesseErrordListAsync(List entities); }