Ejemplo n.º 1
0
 private void ShowInfo(int Id)
 {
     OLBookstore.BLL.TemporaryCartManager bll   = new OLBookstore.BLL.TemporaryCartManager();
     OLBookstore.Model.TemporaryCart      model = bll.GetModel(Id);
     this.lblCreateTime.Text = model.CreateTime.ToString();
     this.lblBookId.Text     = model.BookId.ToString();
     this.lblUserId.Text     = model.UserId.ToString();
     this.lblId.Text         = model.Id.ToString();
 }