tbf/TestBenchFramework/UiControls/IMetrologyDlgTab.cs

22 lines
578 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
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>
Config.Entities.Component MeterEntity { get; set; }
/// <summary>
/// A list of 'measurement-correction' pairs to be deleted from the database on OK.
/// </summary>
IList<Config.Entities.MeasurementCorrection> ToBeRemoved { get; set; }
}
}