PatientInfoCtrlBase.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:PatientInfoCtrlBase.cs
  8. //
  9. #endregion
  10. using System.Windows.Forms;
  11. namespace CLIP.eForm.Consent.UI {
  12. /// <summary>
  13. /// 동의서 조회 컨트롤의 환자 정보 탭 클래스
  14. /// </summary>
  15. /// <remarks>
  16. /// <p>[설계자]</p>
  17. /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
  18. /// <p>[원본 작성자]</p>
  19. /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</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 PatientInfoCtrlBase : UserControl {
  28. //환자목록에서 더블클릭했을 경우, 선택된 환자 정보로 상단정보를 재조회한다.
  29. public virtual void OnRefeashPartControls(string visitType) {
  30. }
  31. //동의서명을 설정
  32. public virtual void SetConsentDocumentName(string documentName) {
  33. }
  34. //작성자 정보를 설정
  35. public virtual void SetConsentUserInfo(string userid, string dutinstcd, string dutplcecd) {
  36. }
  37. public virtual void SetConsentUserInfo(string userid, string dutinstcd, string dutplcecd, string temp) {
  38. }
  39. //상단의 진료일과 작성자 정보로 설정
  40. public virtual void SetBasicPatientInfo() {
  41. }
  42. //동의서 정보로 설정
  43. public virtual void SetPatientByConsentInfo(string orderDate, string orderType, string orderDeptCd, string cretno) {
  44. }
  45. }
  46. }