tbf/TestBenchFramework/UiControls/IMetrologyDlgTab.cs
2015-04-15 20:32:56 +02:00

22 lines
564 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>
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; }
}
}