[Help] understanding Architecture of a parcel system
Hi, I am working on a post system which has two classes, standard and express. I am using Finite state machine to track my order from dispatch to Deliver.
My architecture is like
abstract class post
abstract class post
where I have all the details about the order
class standPost:post
class standPost:post
standpost inheritances all the properties of the post class and I have added a couple status for this class. Also, I have different status for standard deliver, such as dispatch, in transit, and many more. Is there any way that I can change these standPost status automatically, so the client get notification?
If someone can help me or guide, that would be appreciated.