Example error in [Dependency Inversion Principle (DIP)]/[Good] section
dust63 opened this issue · 3 comments
dust63 commented
public interface Employee
{
void Work();
}
you need to call you interface IEmployee for a better comprehension.
public interface IEmployee
{
void Work();
}
avitsidis commented
I totally agree! .Net interfaces always start with an I. Code samples should follow this rule
thangchung commented
Fixed. Thank you so much for your findings 👍
dust63 commented
You're welcome thank you for your work