2017-03-01 13:40:10 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
2017-03-27 21:05:02 +00:00
|
|
|
|
public interface ITankDraining : ISequenceCondition
|
2017-03-01 13:40:10 +00:00
|
|
|
|
{
|
2017-03-28 10:38:47 +00:00
|
|
|
|
IValve DrainValve { get; }
|
2017-03-27 21:05:02 +00:00
|
|
|
|
bool IsEmpty();
|
2018-11-14 10:21:27 +00:00
|
|
|
|
bool ContainsMoreThen(float thld);
|
2017-03-01 13:40:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|