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