///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IDataEntry : IComponent
{
///
/// Updates test results with the information collected in watermeters.
///
/// Watermetes with information entered in the forms
/// Test results to be updated with the information
void UpdateTestResults(IList waterMeters, IList results);
}
}