>>def export_csv
>>    klass = params[:klass]
>>    
>>
>
>Try
>
>klass = Object.const_get(params[:klass])
>  
>
beautiful, thank you so much

Kev