10 lines
200 B
C#
10 lines
200 B
C#
using EgwCoreLib.Lux.Data.DbModel.Items;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Items
|
|
{
|
|
public interface IItemGroupRepository
|
|
{
|
|
Task<List<ItemGroupModel>> GetAllAsync();
|
|
}
|
|
}
|