From 4104dbd5fa23fc9315b61ecd8d468ce4f72c9c12 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Thu, 7 Mar 2024 11:33:46 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'src/Model2Entities?= =?UTF-8?q?/UserRepository.cs'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Model2Entities/UserRepository.cs | 38 +--------------------------- 1 file changed, 1 insertion(+), 37 deletions(-) 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