Click or drag to resize

OperationServiceExtensionsAddPaymentItem(IOperationService, Guid, Decimal, IPaymentItemAdditionalData, IPaymentType, IOrder, ICredentials, IAdditionalCurrency, IOrderGuestItem) Method

Add new payment item to order.

Namespace: Resto.Front.Api.Extensions
Assembly: Resto.Front.Api.V10 (in Resto.Front.Api.V10.dll)
Syntax
C#
public static IPaymentItem AddPaymentItem(
	this IOperationService operationService,
	Guid id,
	decimal paymentSum,
	IPaymentItemAdditionalData additionalData,
	IPaymentType paymentType,
	IOrder order,
	ICredentials credentials,
	IAdditionalCurrency currency = null,
	IOrderGuestItem guest = null
)

Parameters

operationService  IOperationService
Operation service.
id  Guid
Unique identifier of the new payment item. MUST be unique not only for the order, but for the whole system. Therefore it must be taken from some synchronization operation or generated with Guid.NewGuid().
paymentSum  Decimal
Sum of payment item that will be added.
additionalData  IPaymentItemAdditionalData
Instance of a payment specific type carrying properties, which will be used to initialize a payment item, or null if payment type doesn't require additional data for payment item initialization.
paymentType  IPaymentType
Type of payment item that will be added.
order  IOrder
Order to which payment item will be added.
credentials  ICredentials
Credentials of the user. Required to pass permission and some other checks, as well as execute personalized operations.
currency  IAdditionalCurrency  (Optional)
Auxiliary currency data, or null if the payment uses only main currency.
guest  IOrderGuestItem  (Optional)
Guest to which payment item will be added, or null if payment item is not associated with any guest.

Return Value

IPaymentItem

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IOperationService. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also