diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-22 22:39:23 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-22 22:39:23 +0200 |
| commit | 1c91e52c91a1a94616eca632ffdd930ffeb616f4 (patch) | |
| tree | 64cd9a66608c0f2579cf44d0bcd82b87b6c15d63 /src/DevHive.Data/Interfaces/Repositories | |
| parent | b24a160bbdb4df529a932b392d7c0d75013b9319 (diff) | |
| download | DevHive-1c91e52c91a1a94616eca632ffdd930ffeb616f4.tar DevHive-1c91e52c91a1a94616eca632ffdd930ffeb616f4.tar.gz DevHive-1c91e52c91a1a94616eca632ffdd930ffeb616f4.zip | |
Kamen's proposal in Update() at BaseRepo merged
Diffstat (limited to 'src/DevHive.Data/Interfaces/Repositories')
| -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 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); |
