public static CreateCloudDriveReturnValue Execute(CreateCloudDriveParameters parameters)
 {
     PrepareParameters(parameters);
             string DriveBlobName = CreateCloudDriveImplementation.GetTarget_DriveBlobName(parameters.DriveName);
         CreateCloudDriveReturnValue CreateDriveOutput = CreateCloudDriveImplementation.ExecuteMethod_CreateDrive(parameters.SizeInMegabytes, DriveBlobName);
         CreateCloudDriveReturnValue returnValue = CreateCloudDriveImplementation.Get_ReturnValue(CreateDriveOutput);
     return returnValue;
 }
 private static void PrepareParameters(CreateCloudDriveParameters parameters)
 {
 }