private void Button_Click_1(object sender, RoutedEventArgs e) { Automation at = new Automation(); at.HideZDWindow(); }
private void bgWorkerSOM_DoWork(object sender, DoWorkEventArgs e) { BackgroundWorker worker = sender as BackgroundWorker; Automation ae = new Automation(); e.Result = ae.EnterOrders((IEnumerable<OpenXMLReader.Order>)e.Argument, LineCount, EDIEnabled, branch, worker, e); }
private void btnStartZD_Click(object sender, RoutedEventArgs e) { Automation at = new Automation(); at.StartZD(txtBranch.Text, txtAcuthinPath.Text, txtUser.Text); }
private void bgWorkerEDI_DoWork(object sender, DoWorkEventArgs e) { BackgroundWorker worker = sender as BackgroundWorker; Automation ae = new Automation(); e.Result = ae.ConvertEDI(custRange, worker, e); }