public DependencyTrackingContext(
			ContainerProfile profile,
			IComponentRegistration registration,
			IComponentContext context)
		{
			_profile = profile;
			_registration = registration;
			_context = context;
		}
 public ProfilingActivator(
     IComponentRegistration registration,
     IInstanceActivator innerActivator,
     ContainerProfile profile)
 {
     _registration   = registration;
     _innerActivator = innerActivator;
     _profile        = profile;
 }
		public ProfilingActivator(
			IComponentRegistration registration,
			IInstanceActivator innerActivator,
			ContainerProfile profile)
		{
			_registration = registration;
			_innerActivator = innerActivator;
			_profile = profile;
		}
 public DependencyTrackingContext(
     ContainerProfile profile,
     IComponentRegistration registration,
     IComponentContext context)
 {
     _profile      = profile;
     _registration = registration;
     _context      = context;
 }