C# 클래스 Ucrm.Cart

파일 보기 프로젝트 열기: bytecode0101/uCRM 1 사용 예제들

공개 메소드들

메소드 설명
AddProduct ( Ucrm.Product product, int quantity ) : void

Adds an item to the cart

Cart ( System.Guid _UserId ) : System
RemoveItemFromCart ( System.Guid productId ) : void

Deletes an item from the cart.

SubmitOrder ( ) : void

메소드 상세

AddProduct() 공개 메소드

Adds an item to the cart
public AddProduct ( Ucrm.Product product, int quantity ) : void
product Ucrm.Product The product type to be added to the cart
quantity int quantity of products to be added
리턴 void

Cart() 공개 메소드

public Cart ( System.Guid _UserId ) : System
_UserId System.Guid
리턴 System

RemoveItemFromCart() 공개 메소드

Deletes an item from the cart.
public RemoveItemFromCart ( System.Guid productId ) : void
productId System.Guid The Id of the product that will be removed from the cart
리턴 void

SubmitOrder() 공개 메소드

public SubmitOrder ( ) : void
리턴 void