Skip to content

Instantly share code, notes, and snippets.

@JustinMason
Created February 13, 2013 16:29
Show Gist options
  • Save JustinMason/4945825 to your computer and use it in GitHub Desktop.
Save JustinMason/4945825 to your computer and use it in GitHub Desktop.
[ServiceContract]
public interface ICustomerService
{
[OperationContract]
Customer GetCustomer(int id);
[OperationContract]
void SaveCustomer(ref Customer customer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment