Skip to content

Instantly share code, notes, and snippets.

@A2H111
Created March 27, 2017 04:12
Show Gist options
  • Save A2H111/a4550e00552f2b6b57e33952599454ec to your computer and use it in GitHub Desktop.
Save A2H111/a4550e00552f2b6b57e33952599454ec to your computer and use it in GitHub Desktop.
namespace SimpleService
{
[ServiceContract]
public interface ISimpleService
{
[OperationContract]
string GetData(int value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment