using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Operation
{
/// <summary>
/// Represents a machine operator liquid quantity calculation mode which will determine the amount of liquid spent when job has stopped.
/// </summary>
public enum JobLiquidQuantityCalculationMode
{
/// <summary>
/// Calculates the liquid quantities using the <see cref="PMR.MachineStatus.MachineStatus.IDSPacksLevels"/> before and after job run.
/// </summary>
MachineStatus,
/// <summary>
/// Calculates the liquid quantities using the job details, stop position and an integral.
/// </summary>
Integral
}
}