Skip to content

Instantly share code, notes, and snippets.

@A2H111
Created March 27, 2017 04:15
Show Gist options
  • Save A2H111/960b44c85da0270282e3d5d9eefc31bb to your computer and use it in GitHub Desktop.
Save A2H111/960b44c85da0270282e3d5d9eefc31bb to your computer and use it in GitHub Desktop.
namespace SimpleService
{
public class SimpleService : ISimpleService
{
public string GetData(int value)
{
return string.Format("You entered: {0}", value);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment