/// [설계자]
/// 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-06-28 : 최초작성
/// ----------------------------------------------------------------------------------------
///
public partial class ConsentSelectTabPageConsentSet : UserControl {
private HospitalSvcRef.HospitalSvcSoapClient hospitalWebService = null;
private IConsentMain consentMain = null;
private ConsentCommandCtrl commandControl = null;
public ConsentSelectTabPageConsentSet() {
InitializeComponent();
}
private void initResources() {
consentMain = ConsentMainControl.GetConsentMainInterface(this);
commandControl = consentMain.ConsentCommandCtrl as ConsentCommandCtrl;
hospitalWebService = WebMethodCommon.GetHospitalWebService(consentMain.PluginExecuteInfo["hospitalSvcUrl"]);
}
private void ConsentSelectTabPageConsentSet_Load(object sender, EventArgs e) {
if (this.DesignMode || LicenseManager.UsageMode == LicenseUsageMode.Designtime) {
return;
}
consentMain = ConsentMainControl.GetConsentMainInterface(this);
commandControl = consentMain.ConsentCommandCtrl as ConsentCommandCtrl;
hospitalWebService = WebMethodCommon.GetHospitalWebService(consentMain.PluginExecuteInfo["hospitalSvcUrl"]);
if (commandControl.CurrentEndUser != null) {
InitConsentSetTreeView();
}
}
///