23 lines
792 B
C#
23 lines
792 B
C#
using GozareshgirProgramManager.Application._Common.Models;
|
|
using GozareshgirProgramManager.Application.Interfaces;
|
|
using GozareshgirProgramManager.Domain.ProjectAgg.Events;
|
|
using MediatR;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace GozareshgirProgramManager.Application.DomainEventHandlers.ProjectSection;
|
|
|
|
public class ProjectSectionAddedHandler:INotificationHandler<DomainEventNotification<ProjectSectionAddedEvent>>
|
|
{
|
|
private readonly ILogger<CustomerRegisteredHandler> _logger;
|
|
|
|
public ProjectSectionAddedHandler(ILogger<CustomerRegisteredHandler> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
public Task Handle(DomainEventNotification<ProjectSectionAddedEvent> notification, CancellationToken cancellationToken)
|
|
{
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
} |