/// <summary>
 /// Authorizes the payment amount.
 /// </summary>
 /// <returns>A task.</returns>
 public async Task ExecuteAsync()
 {
     // authorize with the payment gateway
     Result = await PaymentGateway.ExecutePaymentAsync().ConfigureAwait(false);
 }