aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/Repositories
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-21 22:08:50 +0200
committertranstrike <transtrike@gmail.com>2021-01-21 22:08:50 +0200
commitbda98b96433d7a9952524fab4ec65f96998b55de (patch)
tree59f8d2bf63b03bacc76f98114d2aed78e420ddcd /src/DevHive.Data/Interfaces/Repositories
parentfb527cbfb94e2723113d67b83ed8f24e32422e56 (diff)
downloadDevHive-bda98b96433d7a9952524fab4ec65f96998b55de.tar
DevHive-bda98b96433d7a9952524fab4ec65f96998b55de.tar.gz
DevHive-bda98b96433d7a9952524fab4ec65f96998b55de.zip
Generic base repo class refactored; All repos inherit generic base repo
Diffstat (limited to 'src/DevHive.Data/Interfaces/Repositories')
-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 40a78de..d9f7c7a 100644
--- a/src/DevHive.Data/Interfaces/Repositories/IRepository.cs
+++ b/src/DevHive.Data/Interfaces/Repositories/IRepository.cs
@@ -18,4 +18,4 @@ namespace DevHive.Data.Repositories.Interfaces
//Delete Entity from database
Task<bool> DeleteAsync(TEntity entity);
}
-} \ No newline at end of file
+}