示例#1
0
 private void ShowInfo(int Id)
 {
     DNSABC.BLL.DNSABC_ProductPrice   bll   = new DNSABC.BLL.DNSABC_ProductPrice();
     DNSABC.Model.DNSABC_ProductPrice model = bll.GetModel(Id);
     this.lblId.Text         = model.Id.ToString();
     this.lblProductID.Text  = model.ProductID.ToString();
     this.lblGradeID.Text    = model.GradeID.ToString();
     this.lblUserID.Text     = model.UserID.ToString();
     this.lblRealPrice.Text  = model.RealPrice.ToString();
     this.lblPrice.Text      = model.Price.ToString();
     this.lblMONTH.Text      = model.MONTH.ToString();
     this.lblUpdateTime.Text = model.UpdateTime.ToString();
     this.lblCreateTime.Text = model.CreateTime.ToString();
 }