using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Application.Common.Dto; using EnvelopeGenerator.Application.Common.Dto.Receiver; 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(IRepository histRepo) { [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool CreateReport(EnvelopeDto envelope, CancellationToken cancel = default) { throw new NotImplementedException(); } [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool FinalizeEnvelope(EnvelopeDto envelope, CancellationToken cancel = default) { throw new NotImplementedException(); } [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool CompleteEnvelope(EnvelopeDto envelope, CancellationToken cancel = default) { throw new NotImplementedException(); } [Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")] public bool CompleteEnvelope(EnvelopeDto envelope, ReceiverDto receiver, CancellationToken cancel = default) { throw new NotImplementedException(); } }