aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Interfaces')
-rw-r--r--src/DevHive.Data/Interfaces/Repositories/IRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Data/Interfaces/Repositories/IRepository.cs b/src/DevHive.Data/Interfaces/Repositories/IRepository.cs
index d9f7c7a..0d11cd3 100644
--- a/src/DevHive.Data/Interfaces/Repositories/IRepository.cs
+++ b/src/DevHive.Data/Interfaces/Repositories/IRepository.cs
@@ -13,7 +13,7 @@ namespace DevHive.Data.Repositories.Interfaces
Task<TEntity> GetByIdAsync(Guid id);
//Modify Entity from database
- Task<bool> EditAsync(TEntity newEntity);
+ Task<bool> EditAsync(Guid id, TEntity newEntity);
//Delete Entity from database
Task<bool> DeleteAsync(TEntity entity);