Private/Filter-FetchToHash.ps1

Filter FetchToHash
{
    begin { $hash = @{} }
    process { 
        $hash[$_.ReturnProperty_Id] = $_ 
    }
    end { return $hash }
}