summaryrefslogtreecommitdiff
path: root/lib/infrastructure/proxies/ProxyFactory.cs
blob: 95c7f6d5b0ea515ebcc9ad62f701a1d579d3d0a0 (plain)
1
2
3
4
5
6
7
8
9
10
namespace gorilla.infrastructure.proxies
{
    static public class ProxyFactory
    {
        static public T create<T>(T target, params Interceptor[] interceptors)
        {
            return new RemotingProxyFactory<T>(target, interceptors).create_proxy();
        }
    }
}