2024-11-10 18:56:16 +00:00
|
|
|
|
using Demo.Data.RemoteData.RemoteDataBase.DAO;
|
|
|
|
|
using Demo.domain.Models;
|
2024-10-21 08:46:20 +00:00
|
|
|
|
|
|
|
|
|
namespace Demo.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);
|
|
|
|
|
}
|
|
|
|
|
}
|