Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IPurchaseOrder

Represents a purchase order in the system.

Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 14.26.0
Syntax
public interface IPurchaseOrder : IOrderGroup, IExtendedProperties

Properties

ExpirationDate

Gets or sets the expiration date. Expiration date can be used for subscription type of orders.

Declaration
Nullable<DateTime> ExpirationDate { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

OrderNumber

Gets or sets the order number.

Declaration
string OrderNumber { get; set; }
Property Value
Type Description
System.String

ReturnForms

Gets the return forms.

Declaration
ICollection<IReturnOrderForm> ReturnForms { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<IReturnOrderForm>

Extension Methods