Skip to content

Instantly share code, notes, and snippets.

@lanetteam-bhavin
Created July 2, 2013 06:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lanetteam-bhavin/5907234 to your computer and use it in GitHub Desktop.
Save lanetteam-bhavin/5907234 to your computer and use it in GitHub Desktop.
My employee class
class EmployeesController < ApplicationController
def index
@employees=Employee.all()
end
def new
@admin=Admin.new
@employee=Employee.new()
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment