Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created April 7, 2018 08:24
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 NMZivkovic/9e74e82edc1c46583e9415b092db685a to your computer and use it in GitHub Desktop.
Save NMZivkovic/9e74e82edc1c46583e9415b092db685a to your computer and use it in GitHub Desktop.
public class Client
{
public IService Service { get; set; }
public Client()
{
Service = new Service1();
}
public void InitiateServiceMethod()
{
Service.ServiceMethod();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment