Public/Work/Show-EdenServiceWorkItemBoard.ps1

function Show-EdenServiceWorkItemBoard {
    <#
        .SYNOPSIS
        Installing coding tools.

        .DESCRIPTION
        Installing coding tools. by calling the local './Eden/Work/Show-ServiceWorkItemBoard.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Work/Show-ServiceWorkItemBoard" `
        -SettingsName $SettingsName `
        -CommandGroup "Work" `
        -Message "Installing coding tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-wib `
    -Value Show-EdenServiceWorkItemBoard `
    -Force