Subversion Repositories SmartDukaan

Rev

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

Rev 22352 Rev 22925
Line 7... Line 7...
7
 
7
 
8
@Repository
8
@Repository
9
public interface UserRepository {
9
public interface UserRepository {
10
	public void persist(User user);
10
	public void persist(User user);
11
	public User selectById(int id) throws ProfitMandiBusinessException;
11
	public User selectById(int id) throws ProfitMandiBusinessException;
12
	public User selectByEmailId(String emailId);
12
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
13
}
13
}