From 7941f1ab479b72ee53e94aef54b8390d21d36f84 Mon Sep 17 00:00:00 2001 From: transtrike Date: Thu, 10 Dec 2020 13:48:34 +0200 Subject: Removed async from DbRepo/Query --- Models/Interfaces/Database/IRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Models/Interfaces/Database') diff --git a/Models/Interfaces/Database/IRepository.cs b/Models/Interfaces/Database/IRepository.cs index e38bb82..449a807 100644 --- a/Models/Interfaces/Database/IRepository.cs +++ b/Models/Interfaces/Database/IRepository.cs @@ -10,7 +10,7 @@ namespace Models.Interfaces.Database Task AddAsync(TEntity entity); //Return *count* instances of Entity from the database - Task> Query(int count); + IEnumerable Query(int count); //Find entity by id Task FindByIdAsync(object id); -- cgit v1.2.3