Public/Documentation/Show-EdenServiceDocsFunctional.ps1

function Show-EdenServiceDocsFunctional {
    <#
        .SYNOPSIS
        Showing service functional docs.

        .DESCRIPTION
        Showing service functional docs. by calling the local './Eden/Documentation/Show-ServiceDocsFunctional.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 "Documentation/Show-ServiceDocsFunctional" `
        -SettingsName $SettingsName `
        -CommandGroup "Documentation" `
        -Message "Showing service functional docs." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-docsf `
    -Value Show-EdenServiceDocsFunctional `
    -Force