once you pass those parameters as variables to SQL then you can do something like this:
1: 2: 3: 4: 5:
select ... from yourtable where (@year is null or [year] = @year) and (@Model is null or Model = @model) and (@make is null or make = @make) and .... and so on ....