Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created October 18, 2014 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulsahay19/344c64afb12bd8b8b3ab to your computer and use it in GitHub Desktop.
Save rahulsahay19/344c64afb12bd8b8b3ab to your computer and use it in GitHub Desktop.
Service Implementation
public class WCFDemo : IEmployee
{
//Service implementation
public string PrintEmployee(Employee empl)
{
// Business Logic goes here...
return string.Format("Hello Employee {0} {1}. Your Designation is {2}", empl.Fname, empl.Lname, empl.Desig);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment