9 lines
179 B
C#
9 lines
179 B
C#
using mROA.Implementation;
|
|
|
|
namespace mROA.Abstract
|
|
{
|
|
public interface IRemoteObjectFactory : IInjectableModule
|
|
{
|
|
T Produce<T>(ComplexObjectIdentifier id);
|
|
}
|
|
} |