presence/data/Repository/IGroupRepository.cs

13 lines
370 B
C#
Raw Normal View History

2024-11-01 14:11:27 +00:00
using Demo.Domain.Models;
namespace Demo.Data.Repository
{
public interface IGroupRepository
{
List<GroupLocalEntity> GetAllGroup();
GroupLocalEntity? GetGroupById(int ID);
bool RemoveGroupByID(int groupId);
GroupLocalEntity? UpdateGroup(GroupLocalEntity updatedGroup);
GroupLocalEntity? CreateGroup(string Name);
}
}