コード例 #1
0
ファイル: TreatmentInfo.cs プロジェクト: windygu/his2
        private void LoadBadActionList()
        {
            Maticsoft.BLL.BadReaction bll = new Maticsoft.BLL.BadReaction();
            DataSet ds = bll.GetList("PID=" + pid.ToString() + " AND peroid=" + TreatPeroid.InTreatment);

            this.gridInfo.DataSource = ds.Tables[0];
            this.gridInfo.DataBind();
        }
コード例 #2
0
        private void bindBadAction_w()
        {
            Maticsoft.BLL.BadReaction bll = new Maticsoft.BLL.BadReaction();
            DataSet ds = bll.GetList("PID=" + pid.ToString() + " AND Peroid=" + period.ToString());

            this.ugBadAction_w.DataSource = ds;
            this.ugBadAction_w.DataBind();
        }