Exemplo n.º 1
0
        protected override async Task ManageRepositoryAsync(ICreateUserIdentityCommand command)
        {
            NullGuard.NotNull(command, nameof(command));

            IUserIdentity userIdentity = command.ToDomain();

            await SecurityRepository.CreateUserIdentityAsync(userIdentity);
        }