public GnosisApplicationManager(
     // IGnosisParentWindowImplementation parentWindowImplementation,
     GnosisController.OrientationType orientation,
     //  IGnosisImplementationCreator creator,
     //  IGnosisIOHelper ioHelper,
     IGnosisSystemCommandsImplementation systemCommandsImplementation,
     IGnosisStyleHelper styleHelper)
 {
     //  GlobalData.Singleton.ParentWindowImplementation = parentWindowImplementation;
     GlobalData.Singleton.AppOrientation = orientation;
     //  GlobalData.Singleton.ImplementationCreator = creator;
     //  GlobalData.Singleton.IOHelper = ioHelper;
     GlobalData.Singleton.SystemCommands   = new GnosisApplicationCommands(systemCommandsImplementation);
     GlobalData.Singleton.StyleHelper      = styleHelper;
     GlobalData.Singleton.LayoutController = new LayoutManager();
 }
 public GnosisApplicationCommands(IGnosisSystemCommandsImplementation implementation)
 {
     commandsImplementation = implementation;
 }