using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Threading; using System.Threading.Tasks; using UserService.DatabaseLayer.DataModels; using UserService.Infrastructure.DataModels; namespace UserService.DatabaseLayer.Repositories { public class OrganizationUnitsRepository : IOrganizationUnitsRepository { public Task> GetAllAsync(Expression>? predicate = null, CancellationToken token = default) { throw new NotImplementedException(); } public Task GetAsync(Expression> predicate, CancellationToken token = default) { throw new NotImplementedException(); } public Task AddAsync(OrganizationUnit entity, CancellationToken token = default) { throw new NotImplementedException(); } public Task UpdateAsync(OrganizationUnit entity, CancellationToken token = default) { throw new NotImplementedException(); } public Task DeleteAsync(OrganizationUnit entity, CancellationToken token = default) { throw new NotImplementedException(); } } }