/// <summary>
 /// Compare this instance to another (by FullName)
 /// </summary>
 /// <param name="other">The other instance</param>
 /// <returns>The result of the comparison</returns>
 public int CompareTo(ICustomerAttributes other)
 {
     return(string.Compare(FullName, other.FullName, StringComparison.InvariantCultureIgnoreCase));
 }
Esempio n. 2
0
 /// <summary>
 /// Compare this instance to another (by FullName)
 /// </summary>
 /// <param name="other">The other instance</param>
 /// <returns>The result of the comparison</returns>
 public int CompareTo(ICustomerAttributes other)
 {
     return(this.FullName.CompareTo(other.FullName));
 }
 public ISubscription CreateSubscriptionUsingCoupon(string ProductHandle, ICustomerAttributes CustomerAttributes, string CouponCode, DateTime NextBillingAt, IPaymentProfileAttributes ExistingProfile)
 {
     throw new NotImplementedException();
 }
 public ISubscription CreateSubscriptionUsingCoupon(string ProductHandle, ICustomerAttributes CustomerAttributes, string CouponCode)
 {
     throw new NotImplementedException();
 }
 public ISubscription CreateSubscriptionUsingCoupon(string ProductHandle, ICustomerAttributes CustomerAttributes, ICreditCardAttributes CreditCardAttributes, string CouponCode, Dictionary<int, string> ComponentsWithQuantity)
 {
     throw new NotImplementedException();
 }
 public ISubscription CreateSubscriptionUsingCoupon(string ProductHandle, ICustomerAttributes CustomerAttributes, ICreditCardAttributes CreditCardAttributes, string CouponCode, int ComponentID, int AllocatedQuantity)
 {
     throw new NotImplementedException();
 }
 public ISubscription CreateSubscription(string ProductHandle, ICustomerAttributes CustomerAttributes, ICreditCardAttributes CreditCardAttributes, DateTime NextBillingAt)
 {
     throw new NotImplementedException();
 }