From 11f9e17badbe517daef1f9f0ea2f5b5e840a2489 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Thu, 7 Mar 2024 11:33:14 +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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Model2Entities/UserRepository.cs b/src/Model2Entities/UserRepository.cs index 3acd0da..a6f3e75 100644 --- a/src/Model2Entities/UserRepository.cs +++ b/src/Model2Entities/UserRepository.cs @@ -12,6 +12,13 @@ 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) {