14 lines
563 B
C#
14 lines
563 B
C#
using GozareshgirProgramManager.Application._Common.Models;
|
|
using GozareshgirProgramManager.Domain.ProjectAgg.Events;
|
|
using MediatR;
|
|
|
|
namespace GozareshgirProgramManager.Application.DomainEventHandlers.TaskSection;
|
|
|
|
public class ProjectSectionAssignedHandler:INotificationHandler<DomainEventNotification<ProjectSectionAssignedEvent>>
|
|
{
|
|
public Task Handle(DomainEventNotification<ProjectSectionAssignedEvent> notification, CancellationToken cancellationToken)
|
|
{
|
|
var domainEvent = notification.DomainEvent;
|
|
return Task.CompletedTask;
|
|
}
|
|
} |