- simulation 수정

This commit is contained in:
2017-02-13 14:51:58 +09:00
parent 8f6937c112
commit ada9aeb58d
3 changed files with 334 additions and 321 deletions

View File

@@ -366,13 +366,13 @@ namespace AutoSellerNS
#region Simulation
private void btLoad_Click(object sender, EventArgs e)
{
SimulationHelper helper = new SimulationHelper(m_CybosHelper);
SimulationHelper helper = new SimulationHelper(m_CybosHelper, tbSimulationLog);
helper.LoadExcel();
}
private void btSimulate_Click(object sender, EventArgs e)
{
SimulationHelper helper = new SimulationHelper(m_CybosHelper);
SimulationHelper helper = new SimulationHelper(m_CybosHelper, tbSimulationLog);
helper.StartSimuation();
}
#endregion