private void panelM3Discount_Click(object sender, EventArgs e) { fuzzyFuncDlg win = new fuzzyFuncDlg(model3.discount); win.ShowDialog(); if (win.result) { model3.setSkidkaFunc(win.curFun); updateStatM3(); } }
private void panelM3Cost_Click(object sender, EventArgs e) { fuzzyFuncDlg win = new fuzzyFuncDlg(model3.cost); win.ShowDialog(); if (win.result) { model3.setCostFunc(win.curFun); updateStatM3(); } }