using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace Win_in.Sfs.Wms.DataExchange.Domain.Iac.Mes.MesProductL7PartsNotes; public interface IMesProductL7PartsNoteManager : IDomainService { //Task CreateAsync(List details); Task GetMaxRowIdAsync(); Task> AddManyAsync(List transactions); }