ConsentListCtrlBase.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
  2. //
  3. // All rights are reserved. Reproduction or transmission in whole or in part,
  4. // in any form or by any means, electronic, mechanical or otherwise, is
  5. // prohibited without the prior written consent of the copyright owner.
  6. //
  7. // Filename:ConsentListCtrlBase.cs
  8. //
  9. #endregion
  10. using System.Windows.Forms;
  11. namespace CLIP.eForm.Consent.Dfh.UI
  12. {
  13. /// <summary>
  14. /// 동의서 조회 컨트롤 상위 클래스
  15. /// </summary>
  16. /// <remarks>
  17. /// <p>[설계자]</p>
  18. /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
  19. /// <p>[원본 작성자]</p>
  20. /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
  21. /// <p>[수정 작성자]</p>
  22. /// <p> 클립소프트 기술부 이인희</p>
  23. /// <p>----------------------------------------------------------------------------------------</p>
  24. /// <p>[HISTORY]</p>
  25. /// <p> 2015-07-30 : 최초작성</p>
  26. /// <p>----------------------------------------------------------------------------------------</p>
  27. /// </remarks>
  28. public partial class ConsentListCtrlBase : UserControl
  29. {
  30. //환자목록에서 더블클릭했을 경우, 선택된 환자 정보로 상단정보를 재조회한다.
  31. public virtual void OnRefeashPartControls()
  32. {
  33. }
  34. public virtual void InquiryConsentData(int consentMstRid)
  35. {
  36. }
  37. // 미작성 탭으로 이동
  38. public virtual void pageMove_tabPageConsentUnfinished(IConsentMain consentMain)
  39. {
  40. }
  41. }
  42. }