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 UploadAction : ChemicalWeighingAction, IAction { LjElectrical.UpAction UpActionElectrical = new LjElectrical.UpAction(); LjMetage.UpAction UpActionMetage = new LjMetage.UpAction(); LjPressure.UpAction UpActionPressure = new LjPressure.UpAction(); LjProportional.UpAction UpActionProportional = new LjProportional.UpAction(); LjWeight.UpAction UpActionWeight = new LjWeight.UpAction(); public void Run(RuntimeParameter runtime) { base.RunIni(runtime); UpActionElectrical.Run(runtime); UpActionMetage.Run(runtime); UpActionPressure.Run(runtime); UpActionProportional.Run(runtime); UpActionWeight.Run(runtime); } } }