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 OrganizationUnitsRepository : IOrganizationUnitsRepository { /// 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(OrganizationUnit entity, CancellationToken token = default) { throw new NotImplementedException(); } /// public async Task UpdateAsync(OrganizationUnit entity, CancellationToken token = default) { throw new NotImplementedException(); } /// public async Task DeleteAsync(OrganizationUnit entity, CancellationToken token = default) { throw new NotImplementedException(); } } }