diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-21 22:08:50 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-21 22:08:50 +0200 |
| commit | bda98b96433d7a9952524fab4ec65f96998b55de (patch) | |
| tree | 59f8d2bf63b03bacc76f98114d2aed78e420ddcd /src/DevHive.Data/Interfaces | |
| parent | fb527cbfb94e2723113d67b83ed8f24e32422e56 (diff) | |
| download | DevHive-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')
| -rw-r--r-- | src/DevHive.Data/Interfaces/Repositories/IRepository.cs | 2 |
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 +} |
