Remove `SharedComponents` references and legacy `LiveLogCache` logic: - Eliminate unused `SharedComponents` references across the solution to streamline dependencies. - Comment out `LiveLogCache` interactions in multiple modules, transitioning to alternative or undefined logging mechanisms. - Add optional `regReadersOptional` parameters to `ShowCycleBeginFormOp` methods for improved flexibility. - Introduce `ITestMethodSmart` interface to support smart reader functionality. - Add new `LogCacheAppender` configuration to `log4netConfig.xml` for diagnostic use. - Update project files to remove outdated references and include newly introduced files.
17 lines
462 B
C#
17 lines
462 B
C#
///
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
public interface IHasCycleBeginForm
|
|
{
|
|
/// <summary>
|
|
/// Displays form at the beginning of the cycle (usually to enter S/N).
|
|
/// </summary>
|
|
/// <returns>Operation to be used in the sequence</returns>
|
|
IOperation ShowCycleBeginFormOp( IRegReader[] regReadersOptional = null);
|
|
}
|
|
}
|