using System.Threading.Tasks; using Win_in.Sfs.Shared.Domain; namespace Win_in.Sfs.Basedata.Domain; public interface IBomRepository : ISfsBaseDataRepositoryBase, ISfsBulkRepositoryBase { Task UpsertAsync(Bom entity); Task UpsertAsyncByInterface(Bom entity); }