Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 24417 |
govind |
1 |
package com.spice.profitmandi.dao.repository.cs;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.springframework.stereotype.Repository;
|
|
|
6 |
|
|
|
7 |
import com.spice.profitmandi.dao.entity.cs.Region;
|
|
|
8 |
|
|
|
9 |
@Repository
|
|
|
10 |
public interface RegionRepository {
|
|
|
11 |
|
|
|
12 |
public void persist(Region region);
|
|
|
13 |
|
|
|
14 |
public Region selectById(int id);
|
|
|
15 |
|
|
|
16 |
public List<Region> selectAll();
|
|
|
17 |
|
|
|
18 |
public Region selectByName(String name);
|
|
|
19 |
}
|