thangchung/clean-code-dotnet

Example error in [Dependency Inversion Principle (DIP)]/[Good] section

dust63 opened this issue · 3 comments

public interface Employee
{
    void Work();
}

you need to call you interface IEmployee for a better comprehension.

public interface IEmployee
{
    void Work();
}

I totally agree! .Net interfaces always start with an I. Code samples should follow this rule

Fixed. Thank you so much for your findings 👍

You're welcome thank you for your work