/// <summary>
 /// Creates the container.
 /// </summary>
 public override void CreateContainer()
 {
     if (_locator == null)
     {
         _locator = ServiceLocatorManager.Current;
     }
     ConfigureContainer();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ServiceLocatorBootStrapper"/> class.
 /// </summary>
 /// <param name="locator">The locator.</param>
 protected ServiceLocatorBootStrapper(System.Abstract.IServiceLocator locator)
 {
     _locator = locator;
 }