Subversion Repositories SmartDukaan

Rev

Rev 21545 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21723 ashik.ali 1
package com.spice.profitmandi.dao.repository.dtr;
21545 ashik.ali 2
 
3
import org.springframework.stereotype.Repository;
4
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
21723 ashik.ali 6
import com.spice.profitmandi.dao.entity.dtr.Click;
21545 ashik.ali 7
 
8
@Repository
9
public interface ClickRepository {
10
	public void persist(Click click) throws ProfitMandiBusinessException;
11
}