Querying payment methods
This topic contains the following:
- Querying a single payment method
- Querying all payment methods
Querying a single payment method
To query a single payment method, you must perform the following:
- Get an instance of the orders manager.
Get an instance of the OrdersManager object.
- Get the specified payment method.
To get the specified payment method, you must either call the GetPaymentMethod method of the manager and pass the ID of the payment method as an argument, or call the GetPaymentMethods method and filter the collection by one of the properties of the payment method(e.g. title).
Here are examples of querying a single payment method by ID and by title:
Querying payment method by ID
public static PaymentMethod GetPaymentMethodById(Guid id)
{
OrdersManager ordersManager = OrdersManager.GetManager();
PaymentMethod paymentMethod = ordersManager.GetPaymentMethod(id);
return paymentMethod;
}
Querying payment method by title
public static PaymentMethod GetPaymentMethodByTitle(string title)
{
OrdersManager ordersManager = OrdersManager.GetManager();
PaymentMethod paymentMethod = ordersManager.GetPaymentMethods().Where(p => p.Title == title).SingleOrDefault();
return paymentMethod;
}
Querying all payment methods
To query all payment methods, you must perform the following:
- Get an instance of the orders manager.
Get an instance of the OrdersManager object.
- Get the payment methods.
To get the payment methods, you must call the GetPaymentMethods method.
Here is a code example:
public static List<PaymentMethod> GetPaymentMethods()
{
OrdersManager ordersManager = OrdersManager.GetManager();
List<PaymentMethod> paymentMethods = ordersManager.GetPaymentMethods().ToList();
return paymentMethods;
}