Rev 35947 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository.user;import org.springframework.stereotype.Repository;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.user.Cart;@Repositorypublic interface CartRepository {public void persist(Cart cart);public Cart selectById(int id) throws ProfitMandiBusinessException;}