2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-12-14 08:50:23 +00:00

Deserialization fix

This commit is contained in:
2025-11-16 11:06:20 +03:00
parent e2e4ac90bc
commit d730fe1b8d
14 changed files with 571 additions and 221 deletions

View File

@@ -83,11 +83,6 @@ public class MemoryStore : IStore
throw new NotImplementedException();
}
public bool Remove(IResource resource)
{
resources.Remove(resource.Instance.Id);
return true;
}
public bool Modify(IResource resource, string propertyName, object value, ulong? age, DateTime? dateTime)
{
@@ -153,7 +148,8 @@ public class MemoryStore : IStore
AsyncReply<bool> IStore.Remove(IResource resource)
{
throw new NotImplementedException();
resources.Remove(resource.Instance.Id);
return AsyncReply.FromResult(true);
}
public AsyncReply<bool> Remove(string path)