main
1namespace Gorilla.Commons.Infrastructure.Proxies
2{
3 static public class ProxyFactory
4 {
5 static public T create<T>(T target, params Interceptor[] interceptors)
6 {
7 return new RemotingProxyFactory<T>(target, interceptors).create_proxy();
8 }
9 }
10}