Subversion Repositories SmartDukaan

Rev

Rev 3088 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3024 mandeep.dh 1
package in.shop2020.crm.persistence;
2
 
3
import in.shop2020.crm.domain.Agent;
4
 
5
/**
6
 * Ibatis mapper for agent table in database.
7
 *
8
 * @author mandeep
9
 */
10
public interface AgentMapper {
11
    public Agent getAgent(long agentId);
12
 
13
    public Agent getAgentByEmailId(String emailId);
14
}