Subversion Repositories SmartDukaan

Rev

Rev 23509 | Rev 24159 | 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
 
23509 amit.gupta 3
import java.util.List;
4
 
22352 ashik.ali 5
import org.springframework.stereotype.Repository;
6
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.dao.entity.user.User;
9
 
10
@Repository
11
public interface UserRepository {
12
	public void persist(User user);
13
	public User selectById(int id) throws ProfitMandiBusinessException;
23509 amit.gupta 14
	public List<User> selectByIds(List<Integer> ids);
24016 amit.gupta 15
	public List<User> selectAll();
22925 ashik.ali 16
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
22352 ashik.ali 17
}