using Model; using Model.Repository; using Shared; namespace Model2Entities; public partial class DbDataManager { public class UserRepository : IUserRepository { private readonly DbDataManager _dataManager; public UserRepository(DbDataManager dataManager) { _dataManager = dataManager; } public async Task> GetItems(int index, int count, string? orderingProperty = null, bool descending = false) { throw new NotImplementedException(); } public async Task GetItemById(int id) { throw new NotImplementedException(); } public async Task UpdateItem(int oldItem, User newItem) { throw new NotImplementedException(); } public async Task AddItem(User item) { throw new NotImplementedException(); } public async Task DeleteItem(int item) { throw new NotImplementedException(); } public async Task GetNbItems() { throw new NotImplementedException(); } public async Task> GetUsers(int index, int count, AthleteOrderCriteria? criteria, bool descending = false) { throw new NotImplementedException(); } public async Task AddFriend(User user, User friend) { throw new NotImplementedException(); } public async Task RemoveFriend(User user, User friend) { throw new NotImplementedException(); } public Task?>? GetFriends(User user, int index, int count, AthleteOrderCriteria? criteria, bool descending = false) { throw new NotImplementedException(); } public Task GetNbFriends(User user) { throw new NotImplementedException(); } } }