123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Windows.Forms;
- using CLIP.eForm.Consent.UI.HospitalSvcRef;
- namespace CLIP.eForm.Consent.UI {
- /// <summary>
- /// 환자목록 클래스
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>[수정 작성자]</p>
- /// <p> </p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2016-06-21 : 최초작성</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- public partial class PatientListCtrlBase : UserControl {
- public PatientListCtrlBase() {
- InitializeComponent();
- }
- // 탭의 그리드에서 체크된 환자리스트를 갖고 온다.
- public virtual List<PatListVO> GetSelectedPatientList() { return null; }
- // 선택된 환자정보로 셋팅
- public virtual void SetChangePID(PatListVO vo) {
- }
- // 선택된 탭의 그리드 체크박스를 해제한다.
- public virtual void SetClearCheckBox() {
- }
- // 외래 탭으로 이동
- public virtual void pageMove_tabPageOutPatient(IConsentMain consentMain) {
- }
- public virtual int getSelectedTabIndex() { return -1; }
- public virtual Hashtable getQueryString(int selectedIndex) { return null; }
- }
- }
|