Skip to content

alireza-es/ParcelDist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Parcel Distribution

Build Status

This is a hypothetical problem to practice SOLID design principles and show some agile practices like Automatic Build, Automatic Test, Continuous Integration (CI) and Continuous Delivery (CD).

Problem

You work at a parcel delivery company and you are asked to design a system to automate the internal handling of parcels coming in. The parcels are coming in at the distribution center and need to be handled by different departments based on their weight and value.

Currently management is making plans that could lead to the adding or removal of departments in the future.

The current business rules are as follows:

  • Parcels with a weight up to 1 kg are handled by the "Mail" departement.

  • Parcels with a weight up to 10 kg are handled by the "Regular" department.

  • Parcels with a weight over 10 kg are handled by the "Heavy" department.

  • Parcels with a value of over € 1000,- need to be signed off by the "Insurance" department, before being processed by Mail, Regular or Heavy department.

Solution

In this project, there are two types of department: IParcelProcessor, IParcelSigner. If management has a plan to remove a department, you should just remove it from organization structure.

If management wants to add a new department, you should add a new class and derive it from department and implement IParcelProcessor or IParcelSigner based on its type. Then you should add it to your organization structure. Organization structure is just a list of departments.

Example of using Open/Close Principle(OCP) in solustion

It is “Open” to extend because you can easily create your type of department (IParcelProcessor or IParcelSigner) and implement its behaviors (Process or SignOff).

It is “Close” for modification because ParcelDistributationService is working with interfaces, not concrete classes. Encapsulation occurs here.

Example of using Interface Segration Principle(ISP) in solustion

Two multiple behaviors of the department (Processing or Signing Off) are put into two different interfaces (IParcelProcessor, IParcelSigner) instead of just one interface.

So, the insurance department does not have to implement the Process method, because it does not know how to implement it.

About

Using SOLID principles and automatic tests in design of parcel distribution system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages