public CreationInterceptor(IObjectCreationInterceptor interceptor)
 {
     _interceptor = interceptor;
 }
 public IContainerBuilder WithCreationInterceptor(IObjectCreationInterceptor interceptor)
 {
     ObjectSource.CreationInterceptors.Add(interceptor);
     return(this);
 }