Payment methods


List of examples:

Payment methods

Creating a payment method




// Creates a new payment method object
PaymentOptionInfo newMethod = new PaymentOptionInfo();

// Sets the payment method properties
newMethod.PaymentOptionDisplayName = "New method";
newMethod.PaymentOptionName = "NewMethod";
newMethod.PaymentOptionSiteID = SiteContext.CurrentSiteID;
newMethod.PaymentOptionEnabled = true;

// Saves the payment method to the database
PaymentOptionInfoProvider.SetPaymentOptionInfo(newMethod);


> Back to list of examples

Updating a payment method




// Gets the payment method
PaymentOptionInfo updateMethod = PaymentOptionInfoProvider.GetPaymentOptionInfo("NewMethod", SiteContext.CurrentSiteName);

if (updateMethod != null)
{
    // Updates the payment method properties
    updateMethod.PaymentOptionDisplayName = updateMethod.PaymentOptionDisplayName.ToLowerCSafe();

    // Saves the changes to the database
    PaymentOptionInfoProvider.SetPaymentOptionInfo(updateMethod);
}


> Back to list of examples

Updating multiple payment methods




// Gets all payment methods on the current site whose code name starts with 'New'
var methods = PaymentOptionInfoProvider.GetPaymentOptions()
                                          .OnSite(SiteContext.CurrentSiteID)
                                          .WhereStartsWith("PaymentOptionName", "New");

// Loops through the payment methods
foreach (PaymentOptionInfo method in methods)
{
    // Updates the payment method properties
    method.PaymentOptionDisplayName = method.PaymentOptionDisplayName.ToUpper();

    // Saves the changes to the database
    PaymentOptionInfoProvider.SetPaymentOptionInfo(method);
}


> Back to list of examples

Deleting a payment method




// Gets the payment method
PaymentOptionInfo deleteMethod = PaymentOptionInfoProvider.GetPaymentOptionInfo("NewMethod", SiteContext.CurrentSiteName);

if (deleteMethod != null)
{
    // Deletes the payment method from the database
    PaymentOptionInfoProvider.DeletePaymentOptionInfo(deleteMethod.PaymentOptionID);
}


> Back to list of examples

Customer credit

Creating a customer credit event




// Gets the first customer whose last name is 'Smith'
CustomerInfo customer = CustomerInfoProvider.GetCustomers()
                                            .WhereEquals("CustomerLastName", "Smith")
                                            .FirstObject;

if (customer != null)
{
    // Creates a new credit event object and sets up its properties
    CreditEventInfo newEvent = new CreditEventInfo
    {
        EventName = "New event",
        EventCreditChange = 500,
        EventDate = DateTime.Now,
        EventDescription = "Credit event description.",
        EventCustomerID = customer.CustomerID,
        EventSiteID = SiteContext.CurrentSiteID
    };

    // Saves the credit event to the database
    CreditEventInfoProvider.SetCreditEventInfo(newEvent);
}


> Back to list of examples

Updating a customer credit event




// Gets the credit event
CreditEventInfo updateCredit = CreditEventInfoProvider.GetCreditEvents()
                                            .WhereEquals("EventName", "NewEvent")
                                            .FirstObject;

if (updateCredit != null)
{
    // Updates the customer credit event properties
    updateCredit.EventName = updateCredit.EventName.ToLowerCSafe();

    // Saves the changes to the database
    CreditEventInfoProvider.SetCreditEventInfo(updateCredit);
}


> Back to list of examples

Updating multiple customer credit events




// Gets all customer credit events whose name starts with 'New'
var credits = CreditEventInfoProvider.GetCreditEvents().WhereStartsWith("EventName", "New");

// Loops through the credit events
foreach (CreditEventInfo updateCredit in credits)
{
    // Updates the credit event properties
    updateCredit.EventName = updateCredit.EventName.ToUpper();

    // Saves the changes to the database
    CreditEventInfoProvider.SetCreditEventInfo(updateCredit);
}


> Back to list of examples

Getting a customer’s total credit




// Gets the first customer whose last name is 'Smith'
CustomerInfo customer = CustomerInfoProvider.GetCustomers()
                                            .WhereEquals("CustomerLastName", "Smith")
                                            .FirstObject;

if (customer != null)
{
    // Gets the customer's total credit on the current site
    double totalCredit = CreditEventInfoProvider.GetTotalCredit(customer.CustomerID, SiteContext.CurrentSiteID);
}


> Back to list of examples

Deleting a customer credit event




// Gets the credit event
CreditEventInfo deleteCredit = CreditEventInfoProvider.GetCreditEvents()
                                                .WhereStartsWith("EventName", "New")
                                                .FirstObject;

if (deleteCredit != null)
{
    // Deletes the credit event from the database
    CreditEventInfoProvider.DeleteCreditEventInfo(deleteCredit);
}


> Back to list of examples