Mega_New_Presence/presence_new/Data/Repository/IGroupRepository.cs

20 lines
543 B
C#
Raw Normal View History

2024-11-01 07:40:53 +00:00
using Demo.Data.RemoteData.RemoteDataBase.DAO;
using Demo.domain.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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);
2024-11-07 08:10:07 +00:00
2024-11-01 07:40:53 +00:00
}
}