Subversion Repositories SmartDukaan

Rev

Rev 22352 | Rev 35947 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22352 ashik.ali 1
package com.spice.profitmandi.dao.repository.user;
2
 
3
import org.springframework.stereotype.Repository;
4
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
6
import com.spice.profitmandi.dao.entity.user.Cart;
7
 
8
@Repository
9
public interface CartRepository {
10
	public void persist(Cart cart);
11
	public Cart selectById(int id) throws ProfitMandiBusinessException;
35945 amit 12
	public Cart selectByIdForUpdate(int id) throws ProfitMandiBusinessException;
22352 ashik.ali 13
}