/// <summary>
 /// Creates an new instance of the command
 /// </summary>
 /// <param name="sceneContent">The content of the scene</param>
 protected StorageOperationsStageCommandBase(ISceneContent sceneContent) : base(sceneContent)
 {
     _stageDataAdapter = CreateDataAdapter();
     BusinessManager   = new StageBusinessManager(_stageDataAdapter);
     StageFilesFilter  = string.Format("{0} (*{1})|*{1}|{2} (*.*)|*.*", Resources.Title_Stage_files,
                                       Constants.Stage.ArchiveFileExtension, Resources.Title_All_files);
 }
 /// <summary>
 /// Creates an new instance of the command
 /// </summary>
 /// <param name="sceneContent">The content of the scene</param>
 protected StorageOperationsStageCommandBase(ISceneContent sceneContent): base(sceneContent)
 {
     _stageDataAdapter = CreateDataAdapter();
     BusinessManager = new StageBusinessManager(_stageDataAdapter);
     StageFilesFilter = string.Format("{0} (*{1})|*{1}|{2} (*.*)|*.*", Resources.Title_Stage_files, 
                                     Constants.Stage.ArchiveFileExtension, Resources.Title_All_files);
 }