public TypeViewFactory(ITypeViewProxyGenerator proxyGenerator, IInterceptor[] interceptors)
 {
     ProxyGenerator = proxyGenerator;
     Interceptors   = interceptors;
 }
 public TypeViewFactory(ITypeViewProxyGenerator proxyGenerator, TypeViewInterceptor interceptor)
 {
     ProxyGenerator = proxyGenerator;
     Interceptors   = new IInterceptor[] { interceptor };
 }