Exemplo n.º 1
0
 /// <summary>
 /// Generates and returns the full html for the form to post when going to payment. Will use the current payment method's payment provider.
 /// </summary>
 /// <param name="storeId">Id of the store.</param>
 /// <param name="submitInput">A html button/input that should be outputted with the form. Will make it possible to use whatever button needed in the setup.</param>
 /// <returns>A html form.</returns>
 public static string GeneratePaymentForm(long storeId, string submitInput)
 {
     return(TeaCommerceHelper.GeneratePaymentForm(storeId, submitInput));
 }