feat(FinalizeDocument): aus CommonJobs kopiert, mit einfachen Fehlerbehebungen unter Verwendung von Copilot
- Programmiersprache von VSC zu C# geändert - Framework von .NET Framework zu .NET geändert
This commit is contained in:
31
EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs
Normal file
31
EnvelopeGenerator.ServiceHost/Jobs/ActionService.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using DigitalData.Modules.Database;
|
||||
using EnvelopeGenerator.Domain.Entities;
|
||||
|
||||
namespace EnvelopeGenerator.ServiceHost.Jobs;
|
||||
|
||||
public class ActionService : BaseService
|
||||
{
|
||||
public ActionService(State state, MSSQLServer database) : base(state)
|
||||
{
|
||||
}
|
||||
|
||||
public bool CreateReport(Envelope envelope)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool FinalizeEnvelope(Envelope envelope)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool CompleteEnvelope(Envelope envelope)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool CompleteEnvelope(Envelope envelope, Receiver receiver)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user