Phase 06 complete: - Namespace renamed in 62 .cs files (namespace + using directives) - AssemblyName + RootNamespace updated in csproj files - FanucProgramManager.csproj → NcProgramManager.csproj - FanucProgramManager.sln → NcProgramManager.sln - FanucProgramManager.Tests/ → NcProgramManager.Tests/ - FANUCMachine.cs deleted (dead code, zero references) Fanuc-prefixed class names kept (FanucMachine, FanucProgram, IFanucMachine) — manufacturer identifiers, not project names. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
466 B
C#
12 lines
466 B
C#
using NcProgramManager.Cnc.Models;
|
|
|
|
namespace NcProgramManager.Cnc
|
|
{
|
|
/// <summary>Validates NC program content before upload to a CNC controller.</summary>
|
|
public interface INcProgramValidator
|
|
{
|
|
/// <param name="programName">File name or program identifier (used for name-format checks).</param>
|
|
/// <param name="content">Full program content string.</param>
|
|
ValidationResult Validate(string programName, string content);
|
|
}
|
|
}
|