Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active April 7, 2018 07:44
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/ad801b181b1c1cee037a7a5e6ecb9f50 to your computer and use it in GitHub Desktop.
Save NMZivkovic/ad801b181b1c1cee037a7a5e6ecb9f50 to your computer and use it in GitHub Desktop.
public interface IService
{
void ServiceMethod();
}
public class Service : IService
{
public void ServiceMethod()
{
Console.WriteLine("Service Method initiated");
// Service Method implementation.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment