public async Task Handle(TeamCreatedDomainEvent notification, CancellationToken cancellationToken)
        {
            var member = new Member(notification.Team.Id, notification.Team.CreatePerson, true);
            //新的团队需要增加初始成员
            await _teamRepository.AddMemberAsync(member);

            await _teamRepository.UnitOfWork.SaveEntitiesAsync();
        }