Public/Running/Start-EdenLocalServiceApplication.ps1

function Start-EdenLocalServiceApplication {
    <#
        .SYNOPSIS
        Starting the local service application.

        .DESCRIPTION
        Starting the local service application. by calling the local './Eden/Running/Start-LocalServiceApplication.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 "Running/Start-LocalServiceApplication" `
        -SettingsName $SettingsName `
        -CommandGroup "Running" `
        -Message "Starting the local service application." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-rsa `
    -Value Start-EdenLocalServiceApplication `
    -Force