コード例 #1
0
ファイル: BootstrapperBaseTests.cs プロジェクト: pars87/Catel
 /// <summary>
 /// The initialize bootstrapper if required.
 /// </summary>
 private void InitializeBootstrapperIfRequired()
 {
     if (fooBootstrapper == null)
     {
         serviceLocator = new ServiceLocator();
         fooBootstrapper = new FooBootstrapper(serviceLocator);
         fooBootstrapper.Run();
     }
 }
コード例 #2
0
 /// <summary>
 /// The initialize bootstrapper if required.
 /// </summary>
 private void InitializeBootstrapperIfRequired()
 {
     if (fooBootstrapper == null)
     {
         serviceLocator  = new ServiceLocator();
         fooBootstrapper = new FooBootstrapper(serviceLocator);
         fooBootstrapper.Run();
     }
 }