/// [설계자]
/// 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-07-11 : 최초작성
/// ----------------------------------------------------------------------------------------
///
public partial class PatientSearchPopup : Form
{
private HospitalSvcRef.HospitalSvcSoapClient hospitalWebService = null;
private string strSearchText = ""; //검색어
//선택된 환자 등록번호
public string PatientID
{
get { return strSearchText; }
set { strSearchText = value; }
}
public PatientSearchPopup()
{
InitializeComponent();
}
public PatientSearchPopup(string searchText)
{
InitializeComponent();
strSearchText = searchText;
}
private void PatientSearchPopup_Load(object sender, EventArgs e)
{
if (this.DesignMode)
{
return;
}
Dictionary