Ejemplo n.º 1
0
 /// <summary>
 /// The notify extension method for <see cref="IPaymentResult"/>
 /// </summary>
 /// <param name="result">
 /// The <see cref="IPaymentResult"/>
 /// </param>
 /// <param name="alias">
 /// The alias.
 /// </param>
 /// <param name="model">
 /// The model.
 /// </param>
 public static void Notify(this IPaymentResult result, string alias, object model)
 {
     result.Notify(alias, model, new string[] { });
 }
Ejemplo n.º 2
0
 /// <summary>
 /// The notify extension method for <see cref="IPaymentResult"/>
 /// </summary>
 /// <param name="result">
 /// The <see cref="IPaymentResult"/>
 /// </param>
 /// <param name="alias">
 /// The alias.
 /// </param>
 /// <remarks>
 /// This extension is intended for internal emails only.  To use to notify a customer,
 /// use the overloaded version and pass an array of contact addresses.
 /// </remarks>
 public static void Notify(this IPaymentResult result, string alias)
 {
     result.Notify(alias, new string[] { });
 }