Skip to content

Instantly share code, notes, and snippets.

@Tapanila
Created August 21, 2012 13:59
Show Gist options
  • Save Tapanila/3415704 to your computer and use it in GitHub Desktop.
Save Tapanila/3415704 to your computer and use it in GitHub Desktop.
using System.ServiceModel;
namespace WcfServiceExample
{
[ServiceContract]
public interface IService1
{
[OperationContract]
public bool SendEmail(string topic, string content);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment