1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- 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)
- {
- }
- }
- }
|