tbf/TestBenchFramework/UiControls/IMetrologyDlgTab.cs
2014-07-28 09:56:40 +02:00

19 lines
504 B
C#

using System.Collections.Generic;
namespace TBF.UiControls
{
interface IMetrologyDlgTab : ITabWithListViewEx
{
/// <summary>
/// Component entity that has a list of 'measurement-correction' pairs
/// to be updated in the database on OK.
/// </summary>
Entities.Component MeterEntity { get; set; }
/// <summary>
/// A list of 'measurement-correction' pairs to be deleted from the database on OK.
/// </summary>
IList<Entities.MeasurementCorrection> ToBeRemoved { get; set; }
}
}