#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:ConsentListCtrlBase.cs // #endregion using System.Windows.Forms; namespace CLIP.eForm.Consent.UI { /// /// 동의서 조회 컨트롤 상위 클래스 /// /// ///

[설계자]

///

클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)

///

[원본 작성자]

///

클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)

///

[수정 작성자]

///

클립소프트 기술부 이인희

///

----------------------------------------------------------------------------------------

///

[HISTORY]

///

2015-07-30 : 최초작성

///

----------------------------------------------------------------------------------------

///
public partial class ConsentListCtrlBase : UserControl { //환자목록에서 더블클릭했을 경우, 선택된 환자 정보로 상단정보를 재조회한다. public virtual void OnRefeashPartControls() { } public virtual void InquiryConsentData(int consentMstRid) { } // 미작성 탭으로 이동 public virtual void pageMove_tabPageConsentUnfinished(IConsentMain consentMain) { } /// /// 발행리스트 탭 갱신 /// public virtual void consentSelectTabPageAllRefresh() { } } }