Public/Work/Show-EdenServiceProductFeatures.ps1

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

    try {
        $settings = Get-EdenSettings

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

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

        Invoke-EdenLocalCommand "Show-ServiceProductFeatures" $settings $loggingPrefix
    }
    catch {
        Write-EdenError "Error showing the service product features. Message: '$($_.Exception.Message)'" $loggingPrefix
    }
}
New-Alias `
    -Name e-pdf `
    -Value Show-EdenServiceProductFeatures `
    -Force