コード例 #1
0
 private void ShowInfo(int Id)
 {
     RuRo.BLL.NormalLisReport   bll   = new RuRo.BLL.NormalLisReport();
     RuRo.Model.NormalLisReport model = bll.GetModel(Id);
     this.lblId.Text            = model.Id.ToString();
     this.lblhospnum.Text       = model.hospnum;
     this.lblpatname.Text       = model.patname;
     this.lblSex.Text           = model.Sex;
     this.lblAge.Text           = model.Age;
     this.lblage_month.Text     = model.age_month;
     this.lblext_mthd.Text      = model.ext_mthd;
     this.lblchinese.Text       = model.chinese;
     this.lblresult.Text        = model.result;
     this.lblunits.Text         = model.units;
     this.lblref_flag.Text      = model.ref_flag;
     this.lbllowvalue.Text      = model.lowvalue;
     this.lblhighvalue.Text     = model.highvalue;
     this.lblprint_ref.Text     = model.print_ref;
     this.lblcheck_date.Text    = model.check_date;
     this.lblcheck_by_name.Text = model.check_by_name;
     this.lblprnt_order.Text    = model.prnt_order;
     this.lblIsDel.Text         = model.IsDel?"是":"否";
 }
コード例 #2
0
ファイル: Show.aspx.cs プロジェクト: aj-hc/SZY
 private void ShowInfo(int Id)
 {
     RuRo.BLL.NormalLisReport bll=new RuRo.BLL.NormalLisReport();
     RuRo.Model.NormalLisReport model=bll.GetModel(Id);
     this.lblId.Text=model.Id.ToString();
     this.lblhospnum.Text=model.hospnum;
     this.lblpatname.Text=model.patname;
     this.lblSex.Text=model.Sex;
     this.lblAge.Text=model.Age;
     this.lblage_month.Text=model.age_month;
     this.lblext_mthd.Text=model.ext_mthd;
     this.lblchinese.Text=model.chinese;
     this.lblresult.Text=model.result;
     this.lblunits.Text=model.units;
     this.lblref_flag.Text=model.ref_flag;
     this.lbllowvalue.Text=model.lowvalue;
     this.lblhighvalue.Text=model.highvalue;
     this.lblprint_ref.Text=model.print_ref;
     this.lblcheck_date.Text=model.check_date;
     this.lblcheck_by_name.Text=model.check_by_name;
     this.lblprnt_order.Text=model.prnt_order;
     this.lblIsDel.Text=model.IsDel?"是":"否";
 }
コード例 #3
0
 private void ShowInfo(int Id)
 {
     RuRo.BLL.NormalLisReport   bll   = new RuRo.BLL.NormalLisReport();
     RuRo.Model.NormalLisReport model = bll.GetModel(Id);
     this.lblId.Text            = model.Id.ToString();
     this.txthospnum.Text       = model.hospnum;
     this.txtpatname.Text       = model.patname;
     this.txtSex.Text           = model.Sex;
     this.txtAge.Text           = model.Age;
     this.txtage_month.Text     = model.age_month;
     this.txtext_mthd.Text      = model.ext_mthd;
     this.txtchinese.Text       = model.chinese;
     this.txtresult.Text        = model.result;
     this.txtunits.Text         = model.units;
     this.txtref_flag.Text      = model.ref_flag;
     this.txtlowvalue.Text      = model.lowvalue;
     this.txthighvalue.Text     = model.highvalue;
     this.txtprint_ref.Text     = model.print_ref;
     this.txtcheck_date.Text    = model.check_date;
     this.txtcheck_by_name.Text = model.check_by_name;
     this.txtprnt_order.Text    = model.prnt_order;
     this.chkIsDel.Checked      = model.IsDel;
 }
コード例 #4
0
ファイル: Modify.aspx.cs プロジェクト: aj-hc/SZY
 private void ShowInfo(int Id)
 {
     RuRo.BLL.NormalLisReport bll=new RuRo.BLL.NormalLisReport();
     RuRo.Model.NormalLisReport model=bll.GetModel(Id);
     this.lblId.Text=model.Id.ToString();
     this.txthospnum.Text=model.hospnum;
     this.txtpatname.Text=model.patname;
     this.txtSex.Text=model.Sex;
     this.txtAge.Text=model.Age;
     this.txtage_month.Text=model.age_month;
     this.txtext_mthd.Text=model.ext_mthd;
     this.txtchinese.Text=model.chinese;
     this.txtresult.Text=model.result;
     this.txtunits.Text=model.units;
     this.txtref_flag.Text=model.ref_flag;
     this.txtlowvalue.Text=model.lowvalue;
     this.txthighvalue.Text=model.highvalue;
     this.txtprint_ref.Text=model.print_ref;
     this.txtcheck_date.Text=model.check_date;
     this.txtcheck_by_name.Text=model.check_by_name;
     this.txtprnt_order.Text=model.prnt_order;
     this.chkIsDel.Checked=model.IsDel;
 }