Rev 3088 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.crm.persistence;import in.shop2020.crm.domain.Agent;/*** Ibatis mapper for agent table in database.** @author mandeep*/public interface AgentMapper {public Agent getAgent(long agentId);public Agent getAgentByEmailId(String emailId);}