Subversion Repositories SmartDukaan

Rev

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

Rev 26785 Rev 26817
Line 9... Line 9...
9
public interface CustomerService {
9
public interface CustomerService {
10
	boolean authenticate(String mobile, String passowrd);
10
	boolean authenticate(String mobile, String passowrd);
11
 
11
 
12
	void resetPassword(String mobile) throws ProfitMandiBusinessException;
12
	void resetPassword(String mobile) throws ProfitMandiBusinessException;
13
 
13
 
14
	void addCustomer(Customer customer) throws ProfitMandiBusinessException;
14
	Customer addCustomer(Customer customer);
15
 
15
 
16
	void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)
16
	void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)
17
			throws ProfitMandiBusinessException;
17
			throws ProfitMandiBusinessException;
18
 
18
 
19
}
19
}