What is open closed principle?
Entities must depend on abstractions, not on concrete implementations.
Objects in a program should be replaceable with instances of their subtypes without altering the correctness of that program.
software entities should be open for extension, but closed for modification.
Many client-specific interfaces are better than one general-purpose interface.