ModelTools/Get-NAVApplicationObjectDevelopmentLanguage.ps1

function Get-NAVApplicationObjectDevelopmentLanguage{
    param(
        [String] $SourceXML
    )

    $Dictionary = Import-Clixml $SourceXML

    return $Dictionary
}