Initial commit

This commit is contained in:
Developer 02
2024-02-23 14:42:30 +01:00
parent 02a197e535
commit 881a42b709
15 changed files with 171 additions and 45 deletions

View File

@@ -9,7 +9,7 @@ namespace EnvelopeGenerator.Web.Controllers
private readonly EnvelopeService envelopeService;
private readonly ActionService actionService;
public EnvelopeController(DatabaseService database, LoggingService logging, EnvelopeService envelope) : base(database, logging)
public EnvelopeController(DatabaseService database, LoggingService logging, EnvelopeService envelope, IConfiguration configuration) : base(database, logging, configuration)
{
envelopeService = envelope;
actionService = database.Services?.actionService;