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.
34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.ServiceHost.Jobs;
|
|
|
|
/// <summary>
|
|
/// migrate from EnvelopeGenerator.CommonServices.Services.ActionService
|
|
/// </summary>
|
|
[Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")]
|
|
public class ActionService
|
|
{
|
|
[Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")]
|
|
public bool CreateReport(Envelope envelope)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
[Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")]
|
|
public bool FinalizeEnvelope(Envelope envelope)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
[Obsolete("This is a placeholder service added by copilot. Migrate the actual logic from CommonServices.Jobs")]
|
|
public bool CompleteEnvelope(Envelope envelope)
|
|
{
|
|
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)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |