using EgwCoreLib.Lux.Data.DbModel.Items; using EgwCoreLib.Lux.Data.DbModel.Sales; namespace EgwCoreLib.Lux.Data.Repository.Sales { public interface IOrderRowRepository : IBaseRepository { #region Public Methods Task AddAsync(OrderRowModel entity); Task DeleteAsync(OrderRowModel entity); Task> GetBomItemsAsync(); Task GetByIdAsync(int OrderRowId); Task> GetByParentAsync(int offerId); Task GetByUidAsync(string OrderRowUid); Task> GetItemGroupsAsync(); Task SaveRowsAsync(List rows); Task UpdateAsync(OrderRowModel entity); #endregion Public Methods } }