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.

[422 byte] By [MohamedMohideena] at [2007-9-30 0:00:04]
# 1

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

nsenthila at 2007-7-16 4:27:51 > top of Java-index,Other Topics,Patterns & OO Design...