Subversion Repositories SmartDukaan

Rev

Rev 3339 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3024 mandeep.dh 1
/**
2
 * 
3
 */
4
package in.shop2020.crm.persistence;
5
 
6
import in.shop2020.crm.domain.Activity;
3390 mandeep.dh 7
import in.shop2020.crm.domain.SearchFilter;
3024 mandeep.dh 8
 
9
import java.util.List;
10
 
11
/**
12
 * Ibatis mapper for activity table in database.
13
 *
14
 * @author mandeep
15
 */
16
public interface ActivityMapper {
3390 mandeep.dh 17
    public List<Activity> getActivities(SearchFilter searchFilter);
3024 mandeep.dh 18
 
19
    public void insertActivity(Activity activity);
20
 
3390 mandeep.dh 21
    public void markAsRead(long activityId);
3024 mandeep.dh 22
}