14 lines
370 B
C#
14 lines
370 B
C#
|
using domain.Models;
|
|||
|
|
|||
|
namespace data.Repository
|
|||
|
{
|
|||
|
public interface IGroupRepository
|
|||
|
{
|
|||
|
List<GroupLocalEntity> GetAllGroup();
|
|||
|
bool RemoveGroupById(int groupID);
|
|||
|
bool UpdateGroupById(int groupID, GroupLocalEntity updatedGroup);
|
|||
|
GroupLocalEntity GetGroupById(int groupID);
|
|||
|
bool AddGroup(GroupLocalEntity newGroup);
|
|||
|
|
|||
|
}
|
|||
|
}
|