Subversion Repositories SmartDukaan

Rev

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

Rev 24479 Rev 29269
Line 1... Line 1...
1
package com.spice.profitmandi.service;
1
package com.spice.profitmandi.service;
2
 
2
 
-
 
3
import java.util.List;
-
 
4
 
3
import org.springframework.stereotype.Service;
5
import org.springframework.stereotype.Service;
4
 
6
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
6
import com.spice.profitmandi.dao.entity.auth.AuthUser;
8
import com.spice.profitmandi.dao.entity.auth.AuthUser;
7
 
9
 
Line 13... Line 15...
13
	void addAuthUser(AuthUser authUser) throws ProfitMandiBusinessException;
15
	void addAuthUser(AuthUser authUser) throws ProfitMandiBusinessException;
14
	void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)
16
	void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)
15
			throws ProfitMandiBusinessException;
17
			throws ProfitMandiBusinessException;
16
	
18
	
17
	String getNameByEmailId(String email);
19
	String getNameByEmailId(String email);
-
 
20
	List<Integer> getDirectReportee(int authId);
18
	
21
	
19
}
22
}