Subversion Repositories SmartDukaan

Rev

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

Rev 33124 Rev 33128
Line 5... Line 5...
5
 
5
 
6
import java.util.List;
6
import java.util.List;
7
 
7
 
8
@Repository
8
@Repository
9
public interface ASTRepository {
9
public interface ASTRepository {
10
    public List<AST> selectByStateId(int stateId);
10
    List<AST> selectByStateId(int stateId);
11
 
-
 
12
    public List<AST> selectById(int id);
11
    AST selectById(int id);
13
 
12
 
14
}
13
}