Subversion Repositories SmartDukaan

Rev

Rev 22925 | Go to most recent revision | Details | 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.User;
7
 
8
@Repository
9
public interface UserRepository {
10
	public void persist(User user);
11
	public User selectById(int id) throws ProfitMandiBusinessException;
12
	public User selectByEmailId(String emailId);
13
}