public void ShowF4(MainForm1 form) { this.Show(); orderList = form.orderList; }
public void ShowF2(MainForm1 form1, OrderService os) { this.Show(); this.orderList = form1.orderList; this.os = os; }
public void ShowF2(MainForm1 form1) { this.Show(); this.orderList = form1.orderList; }
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; }