24 lines
679 B
C#
24 lines
679 B
C#
///
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
using Config.Entities;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IDataEntry : IComponent
|
|
{
|
|
/// <summary>
|
|
/// Returns true when this component uses cameras - displays images
|
|
/// </summary>
|
|
bool UsesCameras();
|
|
|
|
/// <summary>
|
|
/// Updates test results with the information collected in watermeters.
|
|
/// </summary>
|
|
/// <param name="results">Results of a batch of water meters to be updated with information from forms</param>
|
|
void UpdateTestResults(Results.BatchResults results);
|
|
}
|
|
}
|