Subversion Repositories SmartDukaan

Rev

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

Rev 21545 Rev 21723
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository;
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;
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
6
import com.spice.profitmandi.dao.entity.Click;
6
import com.spice.profitmandi.dao.entity.dtr.Click;
7
 
7
 
8
@Repository
8
@Repository
9
public interface ClickRepository {
9
public interface ClickRepository {
10
	public void persist(Click click) throws ProfitMandiBusinessException;
10
	public void persist(Click click) throws ProfitMandiBusinessException;
11
}
11
}
12
12