/// <summary>
 /// Provides a deterministic way to create the ProjectSelection property.
 /// </summary>
 public static void CreateProjectSelection()
 {
     if (_projectSelection == null)
     {
         _projectSelection = _iocContainer.Resolve <ProjectSelectionViewModel>();
     }
 }
 /// <summary>
 /// Provides a deterministic way to create the ProjectSelection property.
 /// </summary>
 public static void CreateProjectSelection()
 {
     if (_projectSelection == null)
     {
         _projectSelection = _iocContainer.Resolve<ProjectSelectionViewModel>();
     }
 }
 /// <summary>
 /// Provides a deterministic way to delete the ProjectSelection property.
 /// </summary>
 public static void ClearProjectSelection()
 {
     _projectSelection.Cleanup();
     _projectSelection = null;
 }
 /// <summary>
 /// Provides a deterministic way to delete the ProjectSelection property.
 /// </summary>
 public static void ClearProjectSelection()
 {
     _projectSelection.Cleanup();
     _projectSelection = null;
 }