Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created November 22, 2017 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/1bfd385f31b16adf2dc138ed40f52312 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/1bfd385f31b16adf2dc138ed40f52312 to your computer and use it in GitHub Desktop.
using System;
namespace calculatorapp.services
{
public class Calculator
{
public int Add(int num1, int num2)
{
throw new NotImplementedException();
}
public int Sub(int num1, int num2)
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment