Skip to content

Commit

Permalink
Fix instantiation of mail service
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed May 1, 2024
1 parent 0a55426 commit 3ca8ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Geodatenbezug/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", encodedCredentials);
});
services.AddTransient<Processor>();
services.AddTransient<IMailService>();
services.AddTransient<IMailService, MailService>();
services.AddTransient<IGeodiensteApi, GeodiensteApi>();
services.AddTransient<IAzureStorage, AzureStorage>();
services = services.Configure<LoggerFilterOptions>(options =>
Expand Down

0 comments on commit 3ca8ce1

Please sign in to comment.