Use a switch instead of a bunch of if else if statements.
Alternatively, if each case is identical other than the model (string), you would be able to make it into a single statement where you index the arrays of strings appropriately. However, this wouldn't necessarily make it more efficient than the switch but it would make it much easier to read and more expandable.