main
1using System;
2using Castle.Core.Interceptor;
3
4namespace gorilla.commons.infrastructure.thirdparty.Castle.DynamicProxy
5{
6 public interface ProxyFactory
7 {
8 TypeToProxy create_proxy_for<TypeToProxy>(Func<TypeToProxy> implementation, params IInterceptor[] interceptors);
9 }
10}