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.
29 lines
980 B
C#
29 lines
980 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 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);
|
|
}
|
|
}
|
|
}
|