vote up 0 vote down star
1

My question is not exactly about programming per se, but I think SO has already overgrown its "programming-only" scope...

For those who don't like to read long introductions, here is my attempt to formulate the question without any background - the chances are some of you could understand right away what I am asking about:

Q: When developing a business-supporting software product, do you encounter (at any phase/stage of development) situations when you need PAIRS of classes corresponding to a single domain entity, like Company and CompanyInformation or Customer and CustomerInformation? If yes, then what's the rationale of such dichotomy?

If this question sounds confusing, I hope the following background information would clarify the question:


While reading "Business Modeling with UML" by Eriksson and Penker, I've stumbled on the following interesting passage in the "Information Modeling" section on p.120 (emphasis is mine):

Figure 4.16 is a class diagram that contains classes for the most important information resources in Sample Business, Inc. Note that a business model can have classes for both Customer and Customer Information. The Customer class represents the actual customer, the physical resource, and how objects of that class behave and interact in business processes. The Customer Information class represents the information about the customer, which the business stores in an information system (although a simple card file is also plausible). The Cusomter and Customer Information classes are two separate entities and must be modeled as such. A very common mistake in analyzing and designing information systems is that one class in the analysis model attempts to be both the actual Customer (typically an actor in a use case) as well as the Customer Information.

A few notes that may be important to understand the situation:

  • The class diagram referred to by this passage contains classes named as follows: Customer Information, Security Information, Portfolio Information, Order Information, Company Information, etc. - that is, each class has ...Information suffix in its name. That implies that some other fragment of the same business model includes classes without such suffixes.

  • In this book, the term "business model" designates exactly what it says: a model of how a real-world business (or any organization, for that matter) works. This model does not necessarily include such elements as a software-based information/automation system, and even if it does, then it does not include any use cases (which are considered by authors as one of the next steps after business modeling - one of the first steps of building a software system to support the business).

  • I am not exactly sure what do the authors mean by "analysis model", but the following quotation from "Software Development Process" section on p. 354 provides some hints (in the authors' view of the software development process, the "analysis" activity described below is preceeded by "requirements analysis" activity and followed by "architectural design" activity):

    Analysis [activity]. Creates an OO model of an ideal solution, which disregards any technical solution solutions of details.

Now, when the authors are talking about a business model, I can understand (I think) why such a model might have to use two separate classes to represent a business entity (like "company", "customer", and "PO") and information about that entity (like "company information", "customer information", and "PO information"). However, I am quite perplexed by the last quoted sentence, which talks about necessity of the same dichotomy in so-called "analysis model" (a model that supposedly includes use cases).

Q: By any chance, do you understand (and can you explain in a layman's terms) what are the authors talking about in that last sentence??

flag

14% accept rate

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.