Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 21545 |
ashik.ali |
1 |
package com.spice.profitmandi.dao.repository;
|
|
|
2 |
|
|
|
3 |
import org.springframework.stereotype.Repository;
|
|
|
4 |
|
|
|
5 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
6 |
import com.spice.profitmandi.dao.entity.Click;
|
|
|
7 |
|
|
|
8 |
@Repository
|
|
|
9 |
public interface ClickRepository {
|
|
|
10 |
public void persist(Click click) throws ProfitMandiBusinessException;
|
|
|
11 |
}
|