public static void Execute(CreateHelloWorldParameters parameters)
 {
     PrepareParameters(parameters);
             HelloWorldObject CreatedObject = CreateHelloWorldImplementation.GetTarget_CreatedObject();
         CreateHelloWorldImplementation.ExecuteMethod_SetHelloWorldText(parameters.HelloText, CreatedObject);
         CreateHelloWorldImplementation.ExecuteMethod_StoreObject(CreatedObject);
 }
 private static void PrepareParameters(CreateHelloWorldParameters parameters)
 {
 }