What is open closed principle?
software entities should be open for extension, but closed for modification.
Many client-specific interfaces are better than one general-purpose interface.
A class should have only a single responsibility - that is, only changes to one part of the software's specification should be able to affect the specification of the class.
Entities must depend on abstractions, not on concrete implementations.