/// /// Copyright (c) 2017 Sensus Metering Systems /// using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TBF.BenchControl.GenericDevices { public interface ITankDraining : ISequenceCondition { IValve DrainValve { get; } bool IsEmpty(); bool ContainsMoreThen(float thld); } }