using System.Text.RegularExpressions; using Govor.Core.Models; using Govor.Core.Repositories.Groups; namespace Govor.Data.Repositories; public class GroupRepository : IGroupsRepository { public Task> GetAllAsync() { throw new NotImplementedException(); } public Task GetByIdAsync(Guid id) { throw new NotImplementedException(); } public Task> FindByNameAsync(string name) { throw new NotImplementedException(); } public Task> GetByAdminIdAsync(Guid adminId) { throw new NotImplementedException(); } public Task> GetByUserIdAsync(Guid adminId) { throw new NotImplementedException(); } public Task Add(Group group) { throw new NotImplementedException(); } public Task Update(Group group) { throw new NotImplementedException(); } public Task Remove(Guid groupId) { throw new NotImplementedException(); } public bool Exists(Guid groupId) { throw new NotImplementedException(); } public bool Exists(ChatGroup chatGroup) { throw new NotImplementedException(); } public bool IsUserMemberOfGroupAsync(Guid userId, Guid groupId) { throw new NotImplementedException(); } }