15 lines
355 B
C#
15 lines
355 B
C#
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
|
|
}
|
|
} |