NewPresence/data/Repository/IGroupRepository.cs

11 lines
302 B
C#
Raw Permalink Normal View History

2025-04-29 12:33:18 +00:00
using data.RemoteData.RemoteDatabase.DAO;
namespace data.Repository;
public interface IGroupRepository
{
public List<GroupDAO> GetAllGroups();
public void AddGroup(string groupName);
public bool UpdateGroup(int groupId, GroupDAO newGroup);
public GroupDAO GetGroupById(int groupId);
}