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; } }