18 lines
436 B
C#
18 lines
436 B
C#
using EgwCoreLib.Lux.Core.RestPayload;
|
|
using EgwCoreLib.Lux.Data.DbModel.Items;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Items
|
|
{
|
|
public interface IItemGroupRepository
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<bool> AddMissingAsync(List<BomItemDTO> bomList);
|
|
|
|
Task<bool> AddRangeAsync(List<ItemGroupModel> entityList);
|
|
|
|
Task<List<ItemGroupModel>> GetAllAsync();
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |