using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp; public class InterfaceCalendarManager : DomainService, IInterfaceCalendarManager { private readonly IInterfaceCalendarLinq2DbRepository _repository; public InterfaceCalendarManager(IInterfaceCalendarLinq2DbRepository repository) { _repository = repository; } public virtual async Task> GetToBeProcessedListAsync() { var products = await _repository.GetListAsync().ConfigureAwait(false); return products.ToList(); } }