Updated DIExtensions to register IEnvelopeExecutor as a singleton and added IEnvelopeReceiverExecutor as a new singleton service. Introduced IEnvelopeReceiverExecutor interface and implemented it in the new EnvelopeReceiverExecutor class for future envelope processing functionality.
8 lines
186 B
C#
8 lines
186 B
C#
using EnvelopeGenerator.Application.Contracts.SQLExecutor;
|
|
|
|
namespace EnvelopeGenerator.Infrastructure.Executor;
|
|
|
|
public class EnvelopeReceiverExecutor: IEnvelopeReceiverExecutor
|
|
{
|
|
}
|