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