Skip to content

Instantly share code, notes, and snippets.

@vbilopav
Created September 1, 2015 13:20
Show Gist options
  • Save vbilopav/8f618fd4cb7a0c4f5ffd to your computer and use it in GitHub Desktop.
Save vbilopav/8f618fd4cb7a0c4f5ffd to your computer and use it in GitHub Desktop.
public class MyServiceSample : WcfBaseService, IMyServiceSample
{
public DoSomeWorkResponse DoSomeWork(SomeWorkRequest request)
{
return new DoSomeWorkResponse();
}
public DoSomeOtherWorkResponse DoSomeOtherWork(SomeOtherWorkRequest request)
{
return new DoSomeOtherWorkResponse();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment