Created
February 24, 2016 01:14
-
-
Save AFelipeTrujillo/de16365c06c8c983940d 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
app.service('Calc',function(MathFactory){ | |
this.square = function(a){ | |
return MathFactory.multiply(a,a); | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment