Add envelope creation functionality and SQL integration

- Updated `EnvelopeGenerator.Application.csproj` to include `Microsoft.Data.SqlClient` package.
- Refactored `CreateEnvelopeReceiverCommand` to inherit from `CreateEnvelopeCommand`.
- Enhanced `CreateEnvelopeSQL` with a SQL script for envelope creation.
- Introduced `CreateEnvelopeCommand` to encapsulate envelope creation data.
- Added `CreateEnvelopeCommandHandler` to process commands and interact with the database.
- Created `CreateEnvelopeResponse` class for handling responses from envelope creation.
This commit is contained in:
Developer 02
2025-05-05 02:01:01 +02:00
parent 7cffc3f7bc
commit d46aa6e2b8
6 changed files with 101 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
namespace EnvelopeGenerator.Application.Envelopes.Commands;
/// <summary>
///
/// </summary>
public class CreateEnvelopeResponse
{
}