2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2017-07-27 07:59:55 +00:00
|
|
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System.Collections.Generic;
|
2015-12-04 16:17:20 +00:00
|
|
|
|
using Config.Entities;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
using TBF.BenchControl.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IDataEntry : IComponent
|
|
|
|
|
|
{
|
2017-07-27 07:59:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Returns true when this component uses cameras - displays images
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
bool UsesCameras();
|
|
|
|
|
|
|
2014-07-28 21:12:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Updates test results with the information collected in watermeters.
|
|
|
|
|
|
/// </summary>
|
2016-01-04 16:55:39 +00:00
|
|
|
|
/// <param name="results">Results of a batch of water meters to be updated with information from forms</param>
|
|
|
|
|
|
void UpdateTestResults(Results.BatchResults results);
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|