#nullable enable using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Threading; using System.Threading.Tasks; using DataModels; namespace UserService.DatabaseLayer.Repositories { public class SecurityGroupsRepository : ISecurityGroupsRepository { /// public async Task> GetAllAsync(Expression>? predicate = null, CancellationToken token = default) { throw new NotImplementedException(); } /// public async Task GetAsync(Expression> predicate, CancellationToken token = default) { throw new NotImplementedException(); } /// public async Task AddAsync(SecurityGroup entity, CancellationToken token = default) { throw new NotImplementedException(); } /// public async Task UpdateAsync(SecurityGroup entity, CancellationToken token = default) { throw new NotImplementedException(); } /// public async Task DeleteAsync(SecurityGroup entity, CancellationToken token = default) { throw new NotImplementedException(); } } }