9 lines
185 B
C#
9 lines
185 B
C#
using mROA.Implementation;
|
|
|
|
namespace mROA.Abstract
|
|
{
|
|
public interface IRemoteObjectFactory
|
|
{
|
|
T Produce<T>(ComplexObjectIdentifier id, IEndPointContext context);
|
|
}
|
|
} |