2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-26 21:13:13 +00:00
This commit is contained in:
2019-11-11 12:50:10 +03:00
parent 5e87ea5247
commit 238ac2563b
5 changed files with 19 additions and 7 deletions

View File

@ -299,6 +299,9 @@ namespace Esiur.Stores.MongoDB
public bool Put(IResource resource)
{
if (resource == this)
return true;
PutResource(resource).Wait();
return true;