SOLID are five basic principles which help to create good software architecture.
S stands for SRP (Single responsibility principle):- A class should take care of only one responsibility.
O stands for OCP (Open closed principle):- Extension should be preferred over modification.
L stands for LSP (Liskov substitution principle):- A parent class object should be able to refer child objects seamlessly during runtime polymorphism.
I stands for ISP (Interface segregation principle):- Client should not be forced to use a interface if it does not need it.
D stands for DIP (Dependency inversion principle) :- High level modules should not depend on low level modules but should depend on abstraction.
Why SOLID ?
SOLID principle will help us to write loosely coupled code which is highly maintainable and less error prone.
1.1 Single responsibility principle (SRP)

namespace SRP
{
public class Employee
{
public int Employee_Id { get; set; }
public string Employee_Name { get; set; }
///
/// This method used to insert into employee table
///
/// Employee object
/// Successfully inserted or not
public bool InsertIntoEmployeeTable(Employee em)
{
// Insert into employee table.
return true;
}
///
/// Method to generate report
///
///
public void GenerateReport(Employee em)
{
// Report generation with employee data using crystal report.
}
}
}
Employee’ class is taking 2 responsibilities, one is to take responsibility of employee database operation and another one is to generate employee report. Employee class should not take the report generation responsibility because suppose some days after your customer asked you to give a facility to generate the report in Excel or any other reporting format, then this class will need to be changed and that is not good.Employee’ class.public class ReportGeneration
{
///
/// Method to generate report
///
///
public void GenerateReport(Employee em)
{
// Report reneration with employee data.
}
}
2.2 Open closed principle (OCP)

ReportGeneration’ class as an example of this principle. Can you guess what is the problem with the below class!!public class ReportGeneration
{
///
/// Report type
///
public string ReportType { get; set; }
///
/// Method to generate report
///
///
public void GenerateReport(Employee em)
{
if (ReportType == “CRS”)
{
// Report generation with employee data in Crystal Report.
}
if (ReportType == “PDF”)
{
// Report generation with employee data in PDF.
}
}
}
If’ clauses are there and if we want to introduce another new report type like ‘Excel’, then you need to write another ‘if’. This class should be open for extension but closed for modification. But how to do that!!public class IReportGeneration
{
///
/// Method to generate report
///
///
public virtual void GenerateReport(Employee em)
{
// From base
}
}
///
/// Class to generate Crystal report
///
public class CrystalReportGeneraion : IReportGeneration
{
public override void GenerateReport(Employee em)
{
// Generate crystal report.
}
}
///
/// Class to generate PDF report
///
public class PDFReportGeneraion : IReportGeneration
{
public override void GenerateReport(Employee em)
{
// Generate PDF report.
}
}
IReportGeneration. So IReportGeneration is open for extension but closed for modification.2.3 Liskov substitution principle (LSP)

employee example to make it understandable this principle. Check the below picture. Employee is a parent class and Permanent and Contract employee are the child classes, inhering from employee class.
public abstract class Employee
{
public virtual string GetProjectDetails(int employeeId)
{
return “Base Project”;
}
public virtual string GetEmployeeDetails(int employeeId)
{
return “Base Employee”;
}
}
public class CasualEmployee : Employee
{
public override string GetProjectDetails(int employeeId)
{
return “Child Project”;
}
// May be for contractual employee we do not need to store the details into database.
public override string GetEmployeeDetails(int employeeId)
{
return “Child Employee”;
}
}
public class ContractualEmployee : Employee
{
public override string GetProjectDetails(int employeeId)
{
return “Child Project”;
}
// May be for contractual employee we do not need to store the details into database.
public override string GetEmployeeDetails(int employeeId)
{
throw new NotImplementedException();
}
}
List employeeList = new List();
employeeList.Add(new ContractualEmployee());
employeeList.Add(new CasualEmployee());
foreach (Employee e in employeeList)
{
e.GetEmployeeDetails(1245);
}
contractual employee, you will get not implemented exception and that is violating LSP. Then what is the solution? Break the whole thing in 2 different interfaces, 1. IProject 2. IEmployee and implement according to employee type.public interface IEmployee
{
string GetEmployeeDetails(int employeeId);
}
public interface IProject
{
string GetProjectDetails(int employeeId);
}
Now, contractual employee will implement IEmployee not IProject. This will maintain this principle.
2.4 Interface segregation principle (ISP)
public interface IEmployee
{
bool AddEmployeeDetails();
}
employee class will inherit this interface for saving data. This is fine right? Now suppose that company one day told to you that they want to read only data of permanent employees. What you will do, just add one method to this interface?public interface IEmployeeDatabase
{
bool AddEmployeeDetails();
bool ShowEmployeeDetails(int employeeId);
}
employee class to show their details from database. So, the solution is to give this responsibility to another interface.public interface IAddOperation
{
bool AddEmployeeDetails();
}
public interface IGetOperation
{
bool ShowEmployeeDetails(int employeeId);
}
employee will implement only IAddOperation and permanent employee will implement both the interface.2.5 Dependency inversion principle (DIP)
public class Email
{
public void SendEmail()
{
// code to send mail
}
}
public class Notification
{
private Email _email;
public Notification()
{
_email = new Email();
}
public void PromotionalNotification()
{
_email.SendEmail();
}
}
Notification class totally depends on Email class, because it only sends one type of notification. If we want to introduce any other like SMS then? We need to change the notification system also. And this is called tightly coupled. What can we do to make it loosely coupled? Ok, check the following implementation.public interface IMessenger
{
void SendMessage();
}
public class Email : IMessenger
{
public void SendMessage()
{
// code to send email
}
}
public class SMS : IMessenger
{
public void SendMessage()
{
// code to send SMS
}
}
public class Notification
{
private IMessenger _iMessenger;
public Notification()
{
_ iMessenger = new Email();
}
public void DoNotify()
{
_ iMessenger.SendMessage();
}
}
Notification class depends on Email class. Now, we can use dependency injection so that we can make it loosely coupled. There are 3 types to DI, Constructor injection, Property injection and method injection.Constructor Injection
{
private IMessenger _iMessenger;
public Notification(Imessenger pMessenger)
{
_ iMessenger = pMessenger;
}
public void DoNotify()
{
_ iMessenger.SendMessage();
}
}
Property Injection
}
Method Injection
Reference : https://www.codeproject.com/Tips/1033646/SOLID-Principle-with-Csharp-Example
