private decimal GetPayMoney()
        {
            TableInfo          ti     = this.Tag as TableInfo;
            OrderDetailInfoBLL odiBll = new OrderDetailInfoBLL();

            return(odiBll.GetPayMoney(oi.OId));
        }
 public frmOrderDish(ListView hallView, ListViewItem tableItem)
 {
     InitializeComponent();
     this.hallView  = hallView;
     this.tableItem = tableItem;
     this.Text      = "厅包:" + this.hallView.Tag + "餐桌:" + tableItem.Text + "-" + this.Text;
     this.diBll     = new DishInfoBLL();
     this.dtiBll    = new DishTypeInfoBLL();
     this.odiBll    = new OrderDetailInfoBLL();
     this.odBll     = new OrderInfoBLL();
 }