Last active
May 29, 2017 10:33
-
-
Save na-o-ys/80a693ab3def9cbb63dc78b01f11eae4 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 UserModel | |
| def create_user(user_information) | |
| dba = DBAccessor.new | |
| dba.insert_user(user_information.user) | |
| dba.insert_user_email(user_information.email) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment