public Task Handle(ProjectJoinedEvent notification, CancellationToken cancellationToken)
        {
            var @event = new ProjectJoinIntergrationEvent()
            {
                Contributor = notification.Contributor
            };

            _capBus.Publish("ProjectJoin", @event);
            return(Task.CompletedTask);
        }
示例#2
0
 public Task CreateRecommendProject(ProjectJoinIntergrationEvent @event)
 {
     return(null);
 }