tbf/TBF/UI/Bench/Metrology/IMetrologyDlgTab.cs

23 lines
589 B
C#

///
/// Copyright (c) 2013-2015 Sensus Slovensko a.s.
///
using System.Collections.Generic;
using Config.Entities;
namespace TBF.UI.Bench.Metrology
{
interface IMetrologyDlgTab : TBF.UI.Shared.ITabWithListViewEx
{
/// <summary>
/// Component entity that has a list of 'measurement-correction' pairs
/// to be updated in the database on OK.
/// </summary>
Component MeterEntity { get; set; }
/// <summary>
/// A list of 'measurement-correction' pairs to be deleted from the database on OK.
/// </summary>
IList<MeasurementCorrection> ToBeRemoved { get; set; }
}
}