protected override async Task ManageRepositoryAsync(IDeleteUserIdentityCommand command)
        {
            NullGuard.NotNull(command, nameof(command));

            await SecurityRepository.DeleteUserIdentityAsync(command.Identifier);
        }