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