egovframework.rfc3.perform.service
Interface PerformService

All Known Implementing Classes:
PerformServiceImpl

public interface PerformService


Method Summary
 int AllApplicantCnt(long playSid)
          해당공연신청자 총수
 void deleteApplicant(long applicantSid)
          공연 신청자 삭제
 void deleteApplicantAllplaySid(long playSid)
          해당공연신청자 전부 삭제
 void deletePerform(long playSid)
          공연 삭제
 ApplicantVO getApplicantInfo(long applicantSid)
          신청자 정보
 int getMaxTicketNum(long playSid)
          max 티켓번호
 PerFormInfoVO getPerformInfo(long playSid)
          공연정보
 PerFormInfoVO getPerformStatus(long playSid)
          공연상태
 void insertApplicant(ApplicantVO applicantVO)
          공연신청자 저장
 void insertPerform(PerFormInfoVO perFormInfoVO)
          공연저장
 int isExistApplicantCnt(ApplicantVO applicantVO)
          해당공연신청자 이중 존재여부
 java.util.List<ApplicantVO> selectApplicantForSchoolList(ApplicantVO applicantVO)
          해당공연신청자 이중 존재여부(유치원 교원)
 java.util.List<ApplicantVO> selectApplicantMyList(java.lang.String userId)
          나의 공연신청 목록
 int selectApplicanTotListCnt(ApplicantVO applicantVO)
          공연신청자 명수
 java.util.List<ApplicantVO> selectApplicantTotList(ApplicantVO applicantVO)
          공연 신청자 전제목록
 java.util.List<PerFormInfoVO> selectPerformTotList(PerFormInfoVO perFormInfoVO)
          공연 전체 목록
 int selectPerformTotListCnt(PerFormInfoVO perFormInfoVO)
          공연 전체 개수
 void updateApplicant(ApplicantVO applicantVO)
          공연 신청자 수정
 void updatePerform(PerFormInfoVO perFormInfoVO)
          공연저장
 

Method Detail

selectPerformTotListCnt

int selectPerformTotListCnt(PerFormInfoVO perFormInfoVO)
                            throws java.lang.Exception
공연 전체 개수

Parameters:
perFormInfoVO -
Returns:
Throws:
java.lang.Exception

selectPerformTotList

java.util.List<PerFormInfoVO> selectPerformTotList(PerFormInfoVO perFormInfoVO)
                                                   throws java.lang.Exception
공연 전체 목록

Parameters:
perFormInfoVO -
Returns:
Throws:
java.lang.Exception

getPerformInfo

PerFormInfoVO getPerformInfo(long playSid)
                             throws java.lang.Exception
공연정보

Parameters:
playSid -
Returns:
Throws:
java.lang.Exception

getPerformStatus

PerFormInfoVO getPerformStatus(long playSid)
                               throws java.lang.Exception
공연상태

Parameters:
playSid -
Returns:
Throws:
java.lang.Exception

insertPerform

void insertPerform(PerFormInfoVO perFormInfoVO)
                   throws java.lang.Exception
공연저장

Parameters:
perFormInfoVO -
Throws:
java.lang.Exception

updatePerform

void updatePerform(PerFormInfoVO perFormInfoVO)
                   throws java.lang.Exception
공연저장

Parameters:
perFormInfoVO -
Throws:
java.lang.Exception

deletePerform

void deletePerform(long playSid)
                   throws java.lang.Exception
공연 삭제

Parameters:
playSid -
Throws:
java.lang.Exception

selectApplicanTotListCnt

int selectApplicanTotListCnt(ApplicantVO applicantVO)
                             throws java.lang.Exception
공연신청자 명수

Parameters:
applicantVO -
Returns:
Throws:
java.lang.Exception

selectApplicantTotList

java.util.List<ApplicantVO> selectApplicantTotList(ApplicantVO applicantVO)
                                                   throws java.lang.Exception
공연 신청자 전제목록

Parameters:
applicantVO -
Returns:
Throws:
java.lang.Exception

selectApplicantMyList

java.util.List<ApplicantVO> selectApplicantMyList(java.lang.String userId)
                                                  throws java.lang.Exception
나의 공연신청 목록

Parameters:
userId -
Returns:
Throws:
java.lang.Exception

getApplicantInfo

ApplicantVO getApplicantInfo(long applicantSid)
                             throws java.lang.Exception
신청자 정보

Parameters:
applicantSid -
Returns:
Throws:
java.lang.Exception

isExistApplicantCnt

int isExistApplicantCnt(ApplicantVO applicantVO)
                        throws java.lang.Exception
해당공연신청자 이중 존재여부

Parameters:
applicantVO -
Returns:
Throws:
java.lang.Exception

selectApplicantForSchoolList

java.util.List<ApplicantVO> selectApplicantForSchoolList(ApplicantVO applicantVO)
                                                         throws java.lang.Exception
해당공연신청자 이중 존재여부(유치원 교원)

Parameters:
applicantVO -
Returns:
Throws:
java.lang.Exception

AllApplicantCnt

int AllApplicantCnt(long playSid)
                    throws java.lang.Exception
해당공연신청자 총수

Parameters:
playSid -
Returns:
Throws:
java.lang.Exception

getMaxTicketNum

int getMaxTicketNum(long playSid)
                    throws java.lang.Exception
max 티켓번호

Parameters:
playSid -
Returns:
Throws:
java.lang.Exception

insertApplicant

void insertApplicant(ApplicantVO applicantVO)
                     throws java.lang.Exception
공연신청자 저장

Parameters:
applicantVO -
Throws:
java.lang.Exception

updateApplicant

void updateApplicant(ApplicantVO applicantVO)
                     throws java.lang.Exception
공연 신청자 수정

Parameters:
applicantVO -
Throws:
java.lang.Exception

deleteApplicant

void deleteApplicant(long applicantSid)
                     throws java.lang.Exception
공연 신청자 삭제

Parameters:
applicantSid -
Throws:
java.lang.Exception

deleteApplicantAllplaySid

void deleteApplicantAllplaySid(long playSid)
                               throws java.lang.Exception
해당공연신청자 전부 삭제

Parameters:
playSid -
Throws:
java.lang.Exception