Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Created June 7, 2016 19:38
Show Gist options
  • Save codenamejason/8bd3abb1d615c1672733feff119f4a6f to your computer and use it in GitHub Desktop.
Save codenamejason/8bd3abb1d615c1672733feff119f4a6f to your computer and use it in GitHub Desktop.
[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);
}
@codenamejason
Copy link
Author

Just a simple service contract for a math test app.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment