示例#1
0
 private void ShowInfo(int GroupPriceNo, int FareRateNo)
 {
     WebDemo.BLL.WebDemo.RatePrice   bll   = new WebDemo.BLL.WebDemo.RatePrice();
     WebDemo.Model.WebDemo.RatePrice model = bll.GetModel(GroupPriceNo, FareRateNo);
     this.lblGroupPriceNo.Text = model.GroupPriceNo.ToString();
     this.lblFareRateNo.Text   = model.FareRateNo.ToString();
     this.txtFareName.Text     = model.FareName;
     this.txtPrice.Text        = model.Price.ToString();
 }