| Line 390... |
Line 390... |
| 390 |
list<Cart> getCartsByTime(1:i64 from_time, 2:i64 to_time, 3:CartStatus status) throws (1:ShoppingCartException scx),
|
390 |
list<Cart> getCartsByTime(1:i64 from_time, 2:i64 to_time, 3:CartStatus status) throws (1:ShoppingCartException scx),
|
| 391 |
string addItemToCart(1:i64 cartId, 2:i64 itemId, 3:i64 quantity, 4:i64 sourceId) throws (1:ShoppingCartException scx),
|
391 |
string addItemToCart(1:i64 cartId, 2:i64 itemId, 3:i64 quantity, 4:i64 sourceId) throws (1:ShoppingCartException scx),
|
| 392 |
void deleteItemFromCart(1:i64 cartId, 2:i64 itemId) throws (1:ShoppingCartException scx),
|
392 |
void deleteItemFromCart(1:i64 cartId, 2:i64 itemId) throws (1:ShoppingCartException scx),
|
| 393 |
void addAddressToCart(1:i64 cartId, 2:i64 addressId) throws (1:ShoppingCartException scx),
|
393 |
void addAddressToCart(1:i64 cartId, 2:i64 addressId) throws (1:ShoppingCartException scx),
|
| 394 |
void addStoreToCart(1:i64 cartId, 2:i64 storeId) throws (1:ShoppingCartException scx),
|
394 |
void addStoreToCart(1:i64 cartId, 2:i64 storeId) throws (1:ShoppingCartException scx),
|
| 395 |
void applyCouponToCart(1:i64 cartId, 2:string couponCode, 3:double totalPrice, 4:double discountedPrice) throws (1:ShoppingCartException scx),
|
395 |
void applyCouponToCart(1:Cart cart, 2:string couponCode) throws (1:ShoppingCartException scx),
|
| 396 |
void removeCoupon(1:i64 cartId) throws (1:ShoppingCartException scx),
|
396 |
void removeCoupon(1:i64 cartId) throws (1:ShoppingCartException scx),
|
| 397 |
|
397 |
|
| 398 |
/**
|
398 |
/**
|
| 399 |
Deletes all the discounts associated with the cart
|
399 |
Deletes all the discounts associated with the cart
|
| 400 |
*/
|
400 |
*/
|