12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
- //
- // All rights are reserved. Reproduction or transmission in whole or in part,
- // in any form or by any means, electronic, mechanical or otherwise, is
- // prohibited without the prior written consent of the copyright owner.
- //
- // Filename:PatientInfoCtrlBase.cs
- //
- #endregion
- using System.Windows.Forms;
- namespace CLIP.eForm.Consent.UI {
- /// <summary>
- /// 동의서 조회 컨트롤의 환자 정보 탭 클래스
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
- /// <p>[수정 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2016-06-21 : 최초작성</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- public partial class PatientInfoCtrlBase : UserControl {
- //환자목록에서 더블클릭했을 경우, 선택된 환자 정보로 상단정보를 재조회한다.
- public virtual void OnRefeashPartControls(string visitType) {
- }
- //동의서명을 설정
- public virtual void SetConsentDocumentName(string documentName) {
- }
- //작성자 정보를 설정
- public virtual void SetConsentUserInfo(string userid, string dutinstcd, string dutplcecd) {
- }
- public virtual void SetConsentUserInfo(string userid, string dutinstcd, string dutplcecd, string temp) {
- }
- //상단의 진료일과 작성자 정보로 설정
- public virtual void SetBasicPatientInfo() {
- }
- //동의서 정보로 설정
- public virtual void SetPatientByConsentInfo(string orderDate, string orderType, string orderDeptCd, string cretno) {
- }
- }
- }
|