[reputation] Move reputation to separate module.

This commit is contained in:
West14
2022-02-14 00:18:53 +02:00
parent 6f02031e65
commit a4a44198c5
20 changed files with 595 additions and 228 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ public static class DbContextExtension
dbContext.Update(entity);
dbContext.SaveChanges();
}
catch (DbUpdateConcurrencyException e)
catch (DbUpdateConcurrencyException)
{
dbContext.Add(entity);
dbContext.SaveChanges();