xxxproject/Demo/Data/Repository/IGroupRepository.cs
Class_Student 6b9b5a424f init
2024-10-30 12:11:19 +03:00

14 lines
378 B
C#

using Demo.Data.Entity;
namespace Demo.Data.Repository
{
public interface IGroupRepository
{
bool AddGroup(GroupLocalEntity newGroup);
List<GroupLocalEntity> GetAllGroup();
GroupLocalEntity GetGroupById(int groupId);
bool UpdateGroupById(int groupId, GroupLocalEntity updatedGroup);
bool RemoveGroupById(int groupId);
}
}