Created
June 7, 2016 19:38
-
-
Save codenamejason/8bd3abb1d615c1672733feff119f4a6f 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
[Service Contract] | |
public interface ImathService | |
{ | |
[Operational Contract] | |
Int32 Sum(Int32 a, Int32 b); | |
[Operational Contract] | |
Int32 Difference(Int32 a, Int32 b); | |
[Operational Contract] | |
Int32 Product(Int32 a, Int32 b); | |
[Operational Contract] | |
Int32 Quotient(Int32 a, Int32 b); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a simple service contract for a math test app.