tbf/TBF/Rig/GenericDevices/IHasCycleEndForm.cs
2021-03-05 16:12:24 +01:00

17 lines
463 B
C#

///
/// Copyright (c) 2013-2016 Sensus Metering Systems
///
using System.Collections.Generic;
namespace TBF.Rig.GenericDevices
{
public interface IHasCycleEndForm
{
/// <summary>
/// Displays form at the end of the cycle (usually to enter the end state).
/// </summary>
/// <returns>Operation to be used in the sequence</returns>
IOperation ShowCycleEndFormOp(IList<Results.Entities.WaterMeter> waterMeters);
}
}