Let say i have a function:
function getCarName() {
return array(1 => 'BMW', 2 => 'MERCEDEZ BENZ', 3 => 'RENAULT');
}
I will use this function on both model and view, should i create two same function on AppHelper and Car Model? What is correct way to achieve this?