Subversion Repositories SmartDukaan

Rev

Rev 22352 | Rev 23509 | 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.User;
7
 
8
@Repository
9
public interface UserRepository {
10
	public void persist(User user);
11
	public User selectById(int id) throws ProfitMandiBusinessException;
22925 ashik.ali 12
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
22352 ashik.ali 13
}