Need a OO design implemention advice
Hi All,
I am planning to develop an application, Customers Account Tracking System in Java Platform. I need a design implementation solution for the problem defined below,
Problem:
Customer does some business with a seller and owes some money to seller.
Customer makes payment back in installments.
How would I proceed from here?
Please guide me.
Thanks,
Mohideen.
I would first write the use cases like:
customer -> ( perform business transacion ) << include >> ( process transaction )
seller-> ( process transaction ) << include >> ( process credit ), ( mail credit terms )
customer -> ( make an installment payment ) << include >> ( process payment )
seller-> ( process payment )
and then use a technique similar to:
http://www.mycgiserver.com/~nsenthil/articles/auctiondbdesign.html
Hope that helps,
Nalla