private void ShowInfo(int SuitProductId)
 {
     NoName.NetShop.BLL.SuitProductModelBll bll   = new NoName.NetShop.BLL.SuitProductModelBll();
     NoName.NetShop.Model.SuitProductModel  model = bll.GetModel(SuitProductId);
     this.lblProductId.Text     = model.ProductId.ToString();
     this.lblSuitName.Text      = model.SuitName;
     this.lblMerchantPrice.Text = model.MerchantPrice.ToString();
     this.lblTradePrice.Text    = model.TradePrice.ToString();
     this.lblStatus.Text        = model.Status.ToString();
 }
 private void ShowInfo(int SuitProductId)
 {
     NoName.NetShop.BLL.SuitProductModelBll bll=new NoName.NetShop.BLL.SuitProductModelBll();
     NoName.NetShop.Model.SuitProductModel model=bll.GetModel(SuitProductId);
     this.lblProductId.Text=model.ProductId.ToString();
     this.lblSuitName.Text=model.SuitName;
     this.lblMerchantPrice.Text=model.MerchantPrice.ToString();
     this.lblTradePrice.Text=model.TradePrice.ToString();
     this.lblStatus.Text=model.Status.ToString();
 }