You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/OliveEQSetting/DownloadAction.cs

29 lines
1022 B
C#

using Mesnac.Action.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.OliveEQSetting
{
public class DownloadAction : ChemicalWeighingAction, IAction
{
LjElectrical.DownAction DownActionElectrical = new LjElectrical.DownAction();
LjMetage.DownAction DownActionMetage = new LjMetage.DownAction();
LjPressure.DownAction DownActionPressure = new LjPressure.DownAction();
LjProportional.DownAction DownActionProportional = new LjProportional.DownAction();
LjWeight.DownAction DownActionWeight = new LjWeight.DownAction();
public void Run(RuntimeParameter runtime)
{
base.RunIni(runtime);
DownActionElectrical.Run(runtime);
DownActionMetage.Run(runtime);
DownActionPressure.Run(runtime);
DownActionProportional.Run(runtime);
DownActionWeight.Run(runtime);
}
}
}