From c9b2feb421ade85502665ad9cdfbc2fd57964742 Mon Sep 17 00:00:00 2001 From: Danail Dimitrov Date: Tue, 15 Dec 2020 19:06:34 +0200 Subject: Removed Query from IRepository.cs --- src/DevHive.Data/Repositories/IRepository.cs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/DevHive.Data/Repositories') diff --git a/src/DevHive.Data/Repositories/IRepository.cs b/src/DevHive.Data/Repositories/IRepository.cs index 1c97f46..f12ad3e 100644 --- a/src/DevHive.Data/Repositories/IRepository.cs +++ b/src/DevHive.Data/Repositories/IRepository.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Generic; using System.Threading.Tasks; namespace Data.Models.Interfaces.Database @@ -10,9 +9,6 @@ namespace Data.Models.Interfaces.Database //Add Entity to database Task AddAsync(TEntity entity); - //Return *count* instances of Entity from the database - IEnumerable Query(int count); - //Find entity by id Task GetByIdAsync(Guid id); -- cgit v1.2.3