arrange folder structure of notification

This commit is contained in:
2025-09-03 16:57:25 +02:00
parent 763f022a5e
commit bb85437cc4
5 changed files with 10 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
using DigitalData.Core.Client;
using EnvelopeGenerator.Application.Common.Notifications;
using EnvelopeGenerator.Application.Common.DocSignedNotification;
using EnvelopeGenerator.Application.Configurations;
using EnvelopeGenerator.Application.EnvelopeReceivers.Commands;
using EnvelopeGenerator.Application.Interfaces.Services;
@@ -59,8 +59,6 @@ public static class DependencyInjection
services.AddMediatR(cfg =>
{
cfg.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());
cfg.RegisterServicesFromAssembly(typeof(CreateEnvelopeReceiverCommandHandler).Assembly);
cfg.RegisterServicesFromAssembly(typeof(DocSignedNotification).Assembly);
});
return services;