Refactor if blocks to dedicated classes
If you code bases contains a long procedure with a lot of if statement to determine which case should be handle, consider extracting each case to its own dedicated class.
If you code bases contains a long procedure with a lot of if statement to determine which case should be handle, consider extracting each case to its own dedicated class.