tbf/TBF/Rig/GenericDevices/IHasCycleBeginForm.cs
Michal Buzik 2b3e0dfa32 Remove SharedComponents + UNI shows Serial Nr
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.
2026-02-23 15:55:24 +01:00

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);
}
}