using DotBased.AspNet.Authority.Models.Authority; using DotBased.AspNet.Authority.Repositories; namespace DotBased.AspNet.Authority.EFCore.Repositories; public class AttributeRepository : IAttributeRepository { public Task> GetAttributesAsync(int limit = 20, int offset = 0, string search = "", CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task> GetAttributeByIdAsync(string id, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task> CreateAttributeAsync(AuthorityAttribute attribute, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task> UpdateAttributeAsync(AuthorityAttribute attribute, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task DeleteAttributeAsync(AuthorityAttribute attribute, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } }