aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/DevHive.Data/Repositories/IRepository.cs4
1 files changed, 0 insertions, 4 deletions
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<TEntity> Query(int count);
-
//Find entity by id
Task<TEntity> GetByIdAsync(Guid id);