13 lines
389 B
C#
13 lines
389 B
C#
|
using Demo.Domain.Models;
|
||
|
|
||
|
namespace Demo.Data.Repository
|
||
|
{
|
||
|
public interface IGroupRepository
|
||
|
{
|
||
|
List<GroupLocalEntity> GetAllGroup();
|
||
|
bool RemoveGroupById(int groupId);
|
||
|
GroupLocalEntity? UpdateGroup(GroupLocalEntity updatedGroup);
|
||
|
GroupLocalEntity? GetGroupById(int groupId);
|
||
|
GroupLocalEntity? CreateGroup(GroupLocalEntity newGroup);
|
||
|
}
|
||
|
}
|