Реализовано универсальное хранилище

This commit is contained in:
2025-03-10 23:28:41 +03:00
parent 5e21d941df
commit d6423136d2
9 changed files with 132 additions and 22 deletions
+44
View File
@@ -0,0 +1,44 @@
using System;
using mROA.Abstract;
namespace mROA.Implementation
{
public class ComplexRepository : IContextRepository
{
public void Inject<T>(T dependency)
{
throw new NotImplementedException();
}
public int HostId { get; set; }
public int ResisterObject<T>(object o, IEndPointContext context)
{
throw new NotImplementedException();
}
public void ClearObject(ComplexObjectIdentifier id)
{
throw new NotImplementedException();
}
public T GetObjectByShell<T>(SharedObjectShellShell<T> sharedObjectShellShell)
{
throw new NotImplementedException();
}
public T? GetObject<T>(ComplexObjectIdentifier id)
{
throw new NotImplementedException();
}
public object GetSingleObject(Type type)
{
throw new NotImplementedException();
}
public int GetObjectIndex<T>(object o, IEndPointContext context)
{
throw new NotImplementedException();
}
}
}