Files
lux/EgwCoreLib.Lux.Data/Repository/Items/IItemGroupRepository.cs
T
2026-03-20 19:03:32 +01:00

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
}
}