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 BomManager : DomainService, IBomManager { private readonly IBomLinq2DbRepository _repository; public BomManager(IBomLinq2DbRepository repository) { _repository = repository; } public async Task> GetToBeProcessedListAsync() { var bom = await _repository.GetListAsync().ConfigureAwait(false); return bom.ToList(); } }