Skip to content

Instantly share code, notes, and snippets.

@BrayanZ
Last active December 17, 2015 00:49
Show Gist options
  • Save BrayanZ/5523538 to your computer and use it in GitHub Desktop.
Save BrayanZ/5523538 to your computer and use it in GitHub Desktop.
class Employee
def initialize(name, base_salary)
@name = name
@base_salary = base_salary
end
def calculate_net_salary
# business logic about how to calculate the net salary
end
def save_to_db
# saves the employee into the database
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment