Subversion Repositories SmartDukaan

Rev

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

Rev 23269 Rev 23781
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.dtr;
1
package com.spice.profitmandi.dao.repository.dtr;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
-
 
4
import java.util.Set;
4
 
5
 
5
import org.springframework.stereotype.Repository;
6
import org.springframework.stereotype.Repository;
6
 
7
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.dao.entity.dtr.User;
9
import com.spice.profitmandi.dao.entity.dtr.User;
Line 18... Line 19...
18
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
19
	public User selectByEmailId(String emailId) throws ProfitMandiBusinessException;
19
	public User selectBySecondryEmailId(String emailId) throws ProfitMandiBusinessException;
20
	public User selectBySecondryEmailId(String emailId) throws ProfitMandiBusinessException;
20
	public User selectByMobileNumber(String mobileNumber) throws ProfitMandiBusinessException;
21
	public User selectByMobileNumber(String mobileNumber) throws ProfitMandiBusinessException;
21
	public User selectByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
22
	public User selectByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
22
	public List<Integer> selectIdAll();
23
	public List<Integer> selectIdAll();
-
 
24
	public List<User> selectAllByIds(Set<Integer> ids);
23
	public boolean isExistByMobileNumber(String mobileNumber);
25
	public boolean isExistByMobileNumber(String mobileNumber);
24
	public boolean isExistByEmailId(String emailId);
26
	public boolean isExistByEmailId(String emailId);
25
	public boolean isExistBySecondryEmailId(String emailId);
27
	public boolean isExistBySecondryEmailId(String emailId);
-
 
28
	public List<User> selectAll();
26
}
29
}
27
30