Subversion Repositories SmartDukaan

Rev

Rev 21723 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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