///
/// 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
{
///
/// Updates test results with the information collected in watermeters.
///
/// Results of a batch of water meters to be updated with information from forms
void UpdateTestResults(Results.BatchResults results);
}
}