package com.webmanage.service;
|
|
import com.webmanage.vo.CartItemVO;
|
|
public interface CartPersistenceService {
|
void saveOrUpdate(Long userId, Long unitId, CartItemVO item);
|
void remove(Long userId, Long unitId, Long pricingId);
|
void clear(Long userId, Long unitId);
|
}
|