Subversion Repository Public Repository

Aurocare_27_07_2018

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcarecommonutil.dao;

import com.bestray.healthcarecommonutil.exception.DataAccessException;
import com.bestray.healthcarecommonutil.vo.TCCodeType;
import java.util.List;

// TODO: Auto-generated Javadoc
/**
 * The Interface CodeTypeDao.
 *
 * @author user3
 */
public interface CodeTypeDao {

    /**
     * Search for code type name.
     *
     * @param s the s
     * @return the list
     * @throws DataAccessException the data access exception
     */
    public List<TCCodeType> searchForCodeTypeName(String s)throws DataAccessException;

    /**
     * Adds the to code type.
     *
     * @param codetype the codetype
     * @throws DataAccessException the data access exception
     */
    public void addToCodeType(TCCodeType codetype)throws DataAccessException;

    /**
     * Gets the code all type.
     *
     * @return the code all type
     * @throws DataAccessException the data access exception
     */
    public List<TCCodeType> getCodeAllType()throws DataAccessException;
    
}

Commits for Aurocare_27_07_2018/AuroCareCommonUtil/src/main/java/com/bestray/healthcarecommonutil/dao/CodeTypeDao.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000