seatonwan9
2025-08-19 53c315297a3906e567b01107a85836528a664206
1
2
3
4
5
6
7
8
9
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);
}