OperationList.aspx.cs 1.1 KB

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using CLIP.eForm.Consent.WebService;
  4. namespace CLIP.eForm.Consent.Web
  5. {
  6. public partial class OperationList : System.Web.UI.Page
  7. {
  8. protected void Page_Load(object sender, EventArgs e)
  9. {
  10. using (HospitalSvc svc = new HospitalSvc())
  11. {
  12. string pid = (this.Request.Params["IO_Pt_ID"] != null) ? this.Request.Params["IO_Pt_ID"] : "";
  13. string ADdate = (this.Request.Params["IO_ADdate"] != null) ? this.Request.Params["IO_ADdate"] : "";
  14. string dutinstcd = (this.Request.Params["IO_DUTINSTCD"] != null) ? this.Request.Params["IO_DUTINSTCD"] : "";
  15. ADdate = ADdate.Replace("-", "").Replace("/", "");
  16. //IList<string> result = svc.GetDiagNameList(pid, ADdate, dutinstcd);
  17. // dbs227 추후 수수명 조회하는 API 와 연동 하여야 함
  18. IList<string> result = null;
  19. //result = svc.getOpNameList(pid, dutinstcd);
  20. opList.DataSource = result;
  21. opList.DataBind();
  22. }
  23. }
  24. }
  25. }