Subversion Repositories SmartDukaan

Rev

Rev 23025 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.user;

import java.util.Map;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;

@Service
public interface RetailerService {
        public Map<String, Object> getByEmailIdOrMobileNumber(String emailIdOrMobileNumber) throws ProfitMandiBusinessException;
        public Map<String, Object> updateRetailerDocument(String emailIdOrMobileNumber, int documentId) throws ProfitMandiBusinessException;
        public Map<String, Object> updateRetailerShopDocument(String emailIdOrMobileNumber, int shopId, int documentId) throws ProfitMandiBusinessException;
}