Public/Support/Show-EdenServiceIssueList.ps1

function Show-EdenServiceIssueList {
    [CmdletBinding()]
    param()

    $location = Get-Location

    try {
        $settings = Get-EdenSettings

        $loggingPrefix = "$($settings.SolutionName) $($settings.ServiceName) Show Resources"

        Write-EdenInfo "Showing the product issues list for the service." $loggingPrefix

        Invoke-EdenLocalCommand "Show-ServiceIssueList" $settings $loggingPrefix
    }
    catch {
        Write-EdenError "Error showing the service issue list. Message: '$($_.Exception.Message)'" $loggingPrefix
    }
    finally {
        Set-Location $location
    }
}
New-Alias `
    -Name e-il `
    -Value Show-EdenServiceIssueList `
    -Force