/// <summary>
 /// Provides a deterministic way to create the Actions property.
 /// </summary>
 public static void CreateActions()
 {
     if (_actions == null)
     {
         _actions = _iocContainer.Resolve <ActionsViewModel>();
     }
 }
 /// <summary>
 /// Provides a deterministic way to create the Actions property.
 /// </summary>
 public static void CreateActions()
 {
     if (_actions == null)
     {
         _actions = _iocContainer.Resolve<ActionsViewModel>();
     }
 }
 /// <summary>
 /// Provides a deterministic way to delete the Actions property.
 /// </summary>
 public static void ClearActions()
 {
     _actions.Cleanup();
     _actions = null;
 }
 /// <summary>
 /// Provides a deterministic way to delete the Actions property.
 /// </summary>
 public static void ClearActions()
 {
     _actions.Cleanup();
     _actions = null;
 }