PatientListCtrlBase.cs 1.6 KB

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