Example #1
0
 public void ShowF4(MainForm1 form)
 {
     this.Show();
     orderList = form.orderList;
 }
Example #2
0
 public void ShowF2(MainForm1 form1, OrderService os)
 {
     this.Show();
     this.orderList = form1.orderList;
     this.os        = os;
 }
Example #3
0
 public void ShowF2(MainForm1 form1)
 {
     this.Show();
     this.orderList = form1.orderList;
 }
Example #4
0
 public void ShowF3(string customerName, string goodName, string quantity, string odId, string detailId, MainForm1 form, OrderService os)
 {
     this.txtCustomer.Text = customerName;
     this.txtGoods.Text    = goodName;
     this.txtNums.Text     = quantity;
     this.odId             = odId;
     this.detailId         = detailId;
     this.orderList        = form.orderList;
     this.Show();
     this.os = os;
 }