Linter/formatter pass across the full codebase. Restores required partial keyword on AXAML code-behind classes that the formatter incorrectly removed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
352 B
C#
12 lines
352 B
C#
namespace ZB.MOM.WW.LmxOpcUa.Client.Shared;
|
|
|
|
/// <summary>
|
|
/// Default factory that creates <see cref="OpcUaClientService" /> instances with production adapters.
|
|
/// </summary>
|
|
public sealed class OpcUaClientServiceFactory : IOpcUaClientServiceFactory
|
|
{
|
|
public IOpcUaClientService Create()
|
|
{
|
|
return new OpcUaClientService();
|
|
}
|
|
} |