public override ActionResult RenderForm(CheckoutConfirmationForm model)
 {
     return this.PartialView(BraintreePartial("BraintreeStandardTransaction"), model);
 }
 public override ActionResult RenderForm(CheckoutConfirmationForm model)
 {
     return this.PartialView(this.GetPartialPath("DebitOrderPaymentMethodForm"), model);
 }
 /// <summary>
 /// Responsible for rendering the Cash Payment Method Form.
 /// </summary>
 /// <param name="model">
 /// The model.
 /// </param>
 /// <returns>
 /// The <see cref="ActionResult"/>.
 /// </returns>
 public override ActionResult RenderForm(CheckoutConfirmationForm model)
 {
     return this.PartialView(PathHelper.GetThemePartialViewPath(model.ThemeName, "CashPaymentMethodForm"), model);
 }