1
2
3
4
5
6
7
8
9
| package com.webmanage.service;
|
| import com.webmanage.vo.CartItemVO;
|
| public interface CartPersistenceService {
| void saveOrUpdate(String userId, String unitId, CartItemVO item);
| void remove(String userId, String unitId, String productId, Long pricingId);
| void clear(String userId, String unitId, String productId);
| }
|
|