09-01-2024

This commit is contained in:
Jonathan Jenne
2024-01-09 11:01:33 +01:00
parent b849a8d87b
commit b7fbb21076
15 changed files with 730 additions and 32 deletions

View File

@@ -12,10 +12,12 @@ namespace EnvelopeGenerator.Web.Services
public class ServiceContainer
{
public ActionService actionService;
public EmailService emailService;
public ServiceContainer(State state)
{
actionService = new(state);
emailService = new(state);
}
}