PatientListCtrlBase.cs.svn-base 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Windows.Forms;
  5. using CLIP.eForm.Consent.UI.HospitalSvcRef;
  6. namespace CLIP.eForm.Consent.UI {
  7. /// <summary>
  8. /// 환자목록 클래스
  9. /// </summary>
  10. /// <remarks>
  11. /// <p>[설계자]</p>
  12. /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
  13. /// <p>[원본 작성자]</p>
  14. /// <p> 클립소프트 기술부 이인희</p>
  15. /// <p>[수정 작성자]</p>
  16. /// <p> </p>
  17. /// <p>----------------------------------------------------------------------------------------</p>
  18. /// <p>[HISTORY]</p>
  19. /// <p> 2016-06-21 : 최초작성</p>
  20. /// <p>----------------------------------------------------------------------------------------</p>
  21. /// </remarks>
  22. public partial class PatientListCtrlBase : UserControl {
  23. public PatientListCtrlBase() {
  24. InitializeComponent();
  25. }
  26. // 탭의 그리드에서 체크된 환자리스트를 갖고 온다.
  27. public virtual List<PatListVO> GetSelectedPatientList() { return null; }
  28. // 선택된 환자정보로 셋팅
  29. public virtual void SetChangePID(PatListVO vo) {
  30. }
  31. // 선택된 탭의 그리드 체크박스를 해제한다.
  32. public virtual void SetClearCheckBox() {
  33. }
  34. // 외래 탭으로 이동
  35. public virtual void pageMove_tabPageOutPatient(IConsentMain consentMain) {
  36. }
  37. public virtual int getSelectedTabIndex() { return -1; }
  38. public virtual Hashtable getQueryString(int selectedIndex) { return null; }
  39. }
  40. }