2024-10-28 03:24:11 +00:00
|
|
|
using Demo.Domain.Models;
|
2024-10-21 09:07:49 +00:00
|
|
|
|
|
|
|
namespace Demo.Data.Repository
|
|
|
|
{
|
|
|
|
public interface IGroupRepository
|
|
|
|
{
|
|
|
|
List<GroupLocalEntity> GetAllGroup();
|
2024-10-28 03:24:11 +00:00
|
|
|
GroupLocalEntity? GetGroupById(int ID);
|
|
|
|
bool RemoveGroupByID(int groupId);
|
|
|
|
GroupLocalEntity? UpdateGroup(GroupLocalEntity updatedGroup);
|
2024-10-24 20:41:31 +00:00
|
|
|
GroupLocalEntity? CreateGroup(string Name);
|
2024-10-21 09:07:49 +00:00
|
|
|
}
|
|
|
|
}
|