The Liskov Substitution Principle states that subtypes must be substitutable for their base types. In order to substitute work, child…
Browsing: solid
Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification. According to this principle, component…
According to Wikipedia the Dependency Inversion Principle (popularized by Robert Martin) states that: High Level Modules should not be depend…
SRP states, “An object should have only one reason to change”. If an object has more than one reason to…
SOLID Design Principle is a collection of best-practice,object-oriented design principles which can be applied to your application design. This allow…
Singleton Design Pattern is used when we want to ensure that only one object of a particular class need to be created. All…