Last active
December 17, 2015 00:49
-
-
Save BrayanZ/5523538 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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