Subversion Repositories SmartDukaan

Rev

Rev 26842 | 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;

@Service
public interface CustomerService {
        boolean authenticate(String mobile, String passowrd);

        void resetPassword(String mobileNumber, String newPassword) throws ProfitMandiBusinessException;

        Customer addCustomer(Customer customer);

        boolean changePassword(String mobileNumber, String oldPassword, String newPassword)
                        throws ProfitMandiBusinessException;

}