Subversion Repositories SmartDukaan

Rev

Rev 22352 | Rev 35947 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22352 Rev 35945
Line 7... Line 7...
7
 
7
 
8
@Repository
8
@Repository
9
public interface CartRepository {
9
public interface CartRepository {
10
	public void persist(Cart cart);
10
	public void persist(Cart cart);
11
	public Cart selectById(int id) throws ProfitMandiBusinessException;
11
	public Cart selectById(int id) throws ProfitMandiBusinessException;
-
 
12
	public Cart selectByIdForUpdate(int id) throws ProfitMandiBusinessException;
12
}
13
}