Files
mROA/mROA/Abstract/IRemoteObjectFactory.cs
T

9 lines
179 B
C#

using mROA.Implementation;
namespace mROA.Abstract
{
public interface IRemoteObjectFactory : IInjectableModule
{
T Produce<T>(ComplexObjectIdentifier id);
}
}