diff --git a/src/Model2Entities/UserRepository.cs b/src/Model2Entities/UserRepository.cs index a6f3e75..1bca2de 100644 --- a/src/Model2Entities/UserRepository.cs +++ b/src/Model2Entities/UserRepository.cs @@ -12,42 +12,6 @@ public partial class DbDataManager { _dataManager = dataManager; } - public async Task> GetItems(int index, int count, string? orderingProperty = null, - bool descending = false) - { - - return await this.GetUsers(index, count, this.ToEnum(orderingProperty), descending); - - } - - public async Task> GetItems(int index, int count, Enum? 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(User item) - { - throw new NotImplementedException(); - } - - public async Task GetNbItems() - { - throw new NotImplementedException(); - } + } } \ No newline at end of file