class PropertiesController < ApplicationController
  def list
    @properties = Property.find(:all, :order => 'date_listed', 
                                      :limit => 3)
  end

  def show
    @property = Property.find(params[:id])
  end
end