Add a feature to reset the user statistics.

This commit is contained in:
Sébastien André
2021-08-14 23:12:28 +02:00
parent 4c1dc89006
commit ce6dad44ce
4 changed files with 24 additions and 9 deletions

View File

@@ -57,6 +57,9 @@ namespace skydiveLogs_api.Infrastructure
public bool Update(UserStats stats)
{
//col.UpdateMany(x => new Customer { Name
// = x.Name.ToUpper(), Salary: 100 }, x => x.Name == "John")
return _col.Update(stats);
}