polykhel / tax-calculator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tax-calculator

Input - input.txt
output - output.png
use mvn to build project and run test cases

All the main code is present in src folder.
All the tests are present in test folder (MainTest runs input.txt test cases).

In the above project to model various products such as books, food, medical etc a common model
called Product is used. The advantage is that product is extensible to any product Type.
Also, more details can be added into current product types

For input a factory design pattern is used. Current input is static however this input can be
can be extended to Database also.

For the tax calc, I have used Strategy pattern. The advantage is that any new tax calc logic can be easily added and the tax logic is dynamically decided at Runtime

Future Extentions:
1. Adding of dao layers to communicate with DB, service layers
2. Storing and fetching data into Db
3. Making more robust test cases
4. Adding UI to create Orders
5. Adding auth, permission, access layer etc

About


Languages

Language:Java 100.0%