using DotBased.AspNet.Authority.Models.Authority; using DotBased.AspNet.Authority.Repositories; namespace DotBased.AspNet.Authority.EFCore.Repositories; public class GroupRepository : IGroupRepository { public Task> GetGroupsAsync(int limit = 20, int offset = 0, string search = "", CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task> GetGroupByIdAsync(string id, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task> CreateGroupAsync(AuthorityGroup group, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task> UpdateGroupAsync(AuthorityGroup group, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task DeleteGroupAsync(AuthorityGroup group, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } }