Raspisanie/data/Repository/IGroupRepository.cs

14 lines
370 B
C#
Raw Normal View History

2024-12-11 08:30:05 +00:00
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);
}
}