diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-15 10:55:07 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-15 10:55:07 +0200 |
| commit | dffe90b75a33076760ebf7e0a006b015cca96767 (patch) | |
| tree | 86d79811863f7fe74512a6dc2d1d37798ab21050 /src/DevHive.Data/Repositories/IRepository.cs | |
| parent | 82f7f5f4fca67e494293628e2cbf8d5bf0b0b06c (diff) | |
| download | DevHive-dffe90b75a33076760ebf7e0a006b015cca96767.tar DevHive-dffe90b75a33076760ebf7e0a006b015cca96767.tar.gz DevHive-dffe90b75a33076760ebf7e0a006b015cca96767.zip | |
Delete changes in IRepository
Diffstat (limited to 'src/DevHive.Data/Repositories/IRepository.cs')
| -rw-r--r-- | src/DevHive.Data/Repositories/IRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Data/Repositories/IRepository.cs b/src/DevHive.Data/Repositories/IRepository.cs index 3125323..b8b3134 100644 --- a/src/DevHive.Data/Repositories/IRepository.cs +++ b/src/DevHive.Data/Repositories/IRepository.cs @@ -20,6 +20,6 @@ namespace Data.Models.Interfaces.Database Task EditAsync(TEntity newEntity); //Delete Entity from database - Task DeleteAsync(Guid id); + Task DeleteAsync(TEntity entity); } }
\ No newline at end of file |
