C# Class PetShop.Services.CartService

Inheritance: PetShop.Services.CartServiceBase
Show file Open project: netTiers/netTiers Class Usage Examples

Public Methods

Method Description
CartService ( ) : System

Initializes a new instance of the CartService class.

SaveOrderLineItems ( int orderId, TList cartItems ) : void

Saves the new order line items

Method Details

CartService() public method

Initializes a new instance of the CartService class.
public CartService ( ) : System
return System

SaveOrderLineItems() public method

Saves the new order line items
public SaveOrderLineItems ( int orderId, TList cartItems ) : void
orderId int The order id of the item
cartItems TList The cart items
return void