16 lines
574 B
C#
16 lines
574 B
C#
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IDataEntry : IComponent
|
|
{
|
|
/// <summary>
|
|
/// Updates test results with the information collected in watermeters.
|
|
/// </summary>
|
|
/// <param name="waterMeters">Watermetes with information entered in the forms</param>
|
|
/// <param name="results">Test results to be updated with the information</param>
|
|
void UpdateTestResults(IList<IWaterMeter> waterMeters, IList<Entities.TestResult> results);
|
|
}
|
|
}
|