using System.Collections.Generic; using System.Threading.Tasks; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.CallMtl; public interface ICallMtlManager { Task> GetToBeProcessedListAsync(); Task UpdateProcessedListAsync(List entities); Task UpdateProcesseErrordListAsync(List entities); }