16 lines
510 B
Plaintext
16 lines
510 B
Plaintext
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface.Sensors.SensorsList
|
|
{
|
|
public interface ISensorsListEditGroupView : IBaseView
|
|
{
|
|
/// <summary>
|
|
/// handles adding/removing columns done before view is displayed
|
|
/// 13065 Sensor "First Use" Date
|
|
/// </summary>
|
|
void HandleColumns();
|
|
void HandleAssemblyVisibilityColumns(bool bDontAllowDataCollectionIfOverused);
|
|
void HandleInspectBeforeUseVisibilityColumn(bool show);
|
|
}
|
|
}
|