Client useful method in instance repository added

This commit is contained in:
2025-05-15 08:20:32 +03:00
parent 4638692305
commit 8e37eda0ae
10 changed files with 40 additions and 89 deletions
+2 -1
View File
@@ -8,7 +8,8 @@ namespace mROA.Abstract
int ResisterObject<T>(object o, IEndPointContext context);
void ClearObject(ComplexObjectIdentifier id, IEndPointContext context);
T GetObject<T>(ComplexObjectIdentifier id, IEndPointContext context);
object GetSingleObject(Type type, IEndPointContext context);
T GetSingletonObject<T>(IEndPointContext context) where T : class, IShared;
object GetSingletonObject(Type type, IEndPointContext context);
int GetObjectIndex<T>(object o, IEndPointContext context);
}
}