Rev 26817 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.fofo.Customer;@Servicepublic interface CustomerService {boolean authenticate(String mobile, String passowrd);void resetPassword(String mobile) throws ProfitMandiBusinessException;void addCustomer(Customer customer) throws ProfitMandiBusinessException;void changePassword(String emailOrMobile, String oldHashedPassword, String hashedPassword)throws ProfitMandiBusinessException;}