Subversion Repositories SmartDukaan

Rev

Rev 3137 | Rev 3390 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3137 Rev 3339
Line 1... Line 1...
1
package in.shop2020.crm.persistence;
1
package in.shop2020.crm.persistence;
2
 
2
 
3
import in.shop2020.crm.domain.Agent;
3
import in.shop2020.crm.domain.Agent;
4
 
4
 
-
 
5
import java.util.Date;
5
import java.util.List;
6
import java.util.List;
6
 
7
 
7
import org.apache.ibatis.annotations.Param;
8
import org.apache.ibatis.annotations.Param;
8
 
9
 
9
/**
10
/**
Line 23... Line 24...
23
    public List<Agent> getAllAgents();
24
    public List<Agent> getAllAgents();
24
 
25
 
25
    public void updatePasswordForAgent(@Param("emailId")String agentEmailId, @Param("password")String password);
26
    public void updatePasswordForAgent(@Param("emailId")String agentEmailId, @Param("password")String password);
26
 
27
 
27
    public List<Agent> getReportees(long agentId);
28
    public List<Agent> getReportees(long agentId);
-
 
29
 
-
 
30
    public Date getLastEmailProcessedTimestamp();
-
 
31
 
-
 
32
    public void updateLastEmailProcessedTimestamp(Date date);
28
}
33
}