From 0b8068f926bd9e9a667ba02e80ab97b3bf222d70 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 9 Mar 2026 10:12:32 +0100 Subject: [PATCH] Add summary comment to ActionService for migration context Added an XML summary comment to the ActionService class to indicate it is being migrated from EnvelopeGenerator.CommonServices.Services.ActionService. This provides clarity on the class's origin and intended purpose; no functional changes were made. --- EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs b/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs index 93797db9..c7a5ba2e 100644 --- a/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs +++ b/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs @@ -2,6 +2,9 @@ using EnvelopeGenerator.Domain.Entities; namespace EnvelopeGenerator.ServiceHost.Jobs; +/// +/// migrate from EnvelopeGenerator.CommonServices.Services.ActionService +/// [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public class ActionService {