diff --git a/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs b/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs index 1c5e4a89..93797db9 100644 --- a/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs +++ b/EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs @@ -1,31 +1,31 @@ -using DigitalData.Modules.Database; using EnvelopeGenerator.Domain.Entities; namespace EnvelopeGenerator.ServiceHost.Jobs; -public class ActionService : BaseService +[Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] +public class ActionService { - public ActionService(State state, MSSQLServer database) : base(state) - { - } - + [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool CreateReport(Envelope envelope) { - return true; + throw new NotImplementedException(); } + [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool FinalizeEnvelope(Envelope envelope) { - return true; + throw new NotImplementedException(); } + [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool CompleteEnvelope(Envelope envelope) { - return true; + throw new NotImplementedException(); } + [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool CompleteEnvelope(Envelope envelope, Receiver receiver) { - return true; + throw new NotImplementedException(); } -} +} \ No newline at end of file