diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2020-12-15 19:06:34 +0200 |
|---|---|---|
| committer | Danail Dimitrov <danaildimitrov321@gmail.com> | 2020-12-15 19:06:34 +0200 |
| commit | c9b2feb421ade85502665ad9cdfbc2fd57964742 (patch) | |
| tree | b4c120904fccc4704d4658ddbf8c1c042076301f /src/DevHive.Data/Repositories/IRepository.cs | |
| parent | 309fb3dcfad43e8e5b497af92f33df4dabbf8f6b (diff) | |
| download | DevHive-c9b2feb421ade85502665ad9cdfbc2fd57964742.tar DevHive-c9b2feb421ade85502665ad9cdfbc2fd57964742.tar.gz DevHive-c9b2feb421ade85502665ad9cdfbc2fd57964742.zip | |
Removed Query from IRepository.cs
Diffstat (limited to 'src/DevHive.Data/Repositories/IRepository.cs')
| -rw-r--r-- | src/DevHive.Data/Repositories/IRepository.cs | 4 |
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); |
