aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Repositories/BaseRepository.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-02-01 16:03:38 +0200
committertranstrike <transtrike@gmail.com>2021-02-01 16:03:38 +0200
commitb41f887712ef8f2f0b602da3042261a78c5f492a (patch)
treefb6437ea34896da7c7db3a292bbdb8ee7d14e889 /src/DevHive.Data/Repositories/BaseRepository.cs
parentaa342542789b22f24ce3ecbfcb7888d4ff12d30c (diff)
downloadDevHive-b41f887712ef8f2f0b602da3042261a78c5f492a.tar
DevHive-b41f887712ef8f2f0b602da3042261a78c5f492a.tar.gz
DevHive-b41f887712ef8f2f0b602da3042261a78c5f492a.zip
Commented out implementation of Rating; Bug fixes
Diffstat (limited to 'src/DevHive.Data/Repositories/BaseRepository.cs')
-rw-r--r--src/DevHive.Data/Repositories/BaseRepository.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/DevHive.Data/Repositories/BaseRepository.cs b/src/DevHive.Data/Repositories/BaseRepository.cs
index cac802e..ece372e 100644
--- a/src/DevHive.Data/Repositories/BaseRepository.cs
+++ b/src/DevHive.Data/Repositories/BaseRepository.cs
@@ -21,7 +21,7 @@ namespace DevHive.Data.Repositories
.Set<TEntity>()
.AddAsync(entity);
- return await this.SaveChangesAsync(_context);
+ return await this.SaveChangesAsync();
}
public virtual async Task<TEntity> GetByIdAsync(Guid id)
@@ -39,19 +39,19 @@ namespace DevHive.Data.Repositories
entry.State = EntityState.Modified;
- return await this.SaveChangesAsync(_context);
+ return await this.SaveChangesAsync();
}
public virtual async Task<bool> DeleteAsync(TEntity entity)
{
this._context.Remove(entity);
- return await this.SaveChangesAsync(_context);
+ return await this.SaveChangesAsync();
}
- public virtual async Task<bool> SaveChangesAsync(DbContext context)
+ public virtual async Task<bool> SaveChangesAsync()
{
- int result = await context.SaveChangesAsync();
+ int result = await _context.SaveChangesAsync();
return result >= 1;
}