Private/Get-ServiceCost.ps1

function Get-ServiceCost ($Consumption) {

    $Consumption | Group-Object ConsumedService | ForEach-Object {
        [pscustomobject]@{
            Service = $_.Name
            Cost    = ($_.Group | Measure-Object PreTaxCost -Sum).Sum
        }
    }
}