Exemplo n.º 1
0
        private void BindTraceList()
        {
            Maticsoft.BLL.Patient bll = new Maticsoft.BLL.Patient();
            DataSet dt = bll.GetTracedPatient();

            this.ugBadAction_w.DataSource = dt;
            this.ugBadAction_w.DataBind();
        }
Exemplo n.º 2
0
        private void ShowPops()
        {
            Maticsoft.BLL.Patient bll = new Maticsoft.BLL.Patient();
            DataSet ds = bll.GetTracedPatient();

            if (ds != null && ds.Tables[0].Rows.Count > 0)
            {
                foreach (DataRow dr in ds.Tables[0].Rows)
                {
                    ShowPatientPop(dr["ID"].ToString(), dr["Name"].ToString(), dr["Period"].ToString(), dr["PeriodName"].ToString());
                }
            }
        }