Re: Conceptual Vs Data Vs Domain model

"[email protected] [domaindrivendesign]" <[email protected]> 06 Dec 2014 15:14:18 -0800
Newsgroups gmane.comp.programming.domain-driven-design
Message-ID <[email protected]>
Thank you Paul for quickly responding.
 

 You can consider this in a Catalog and Forecasting Bounded Context. Some DSL are:
 

 Catalog BC:
 

 1. Categorize all the products received today at the warehouse based on the vendor and UPC.
 2. Remove expired products.
 

 Forecasting BC:
 

 1. Find potential sales tax for states (like CA, UT, CO etc...)
 2. Find profit for products in Category A
 3. Find profit for products in Category A,B & D
 4. Calculate sales price by using five different strategies
 

 I appreciate your response.

---In [email protected], <paul@...> wrote :


 Either model could work in the abstract, but how do you want to use your model? Give some concrete examples of what behaviors you're looking to support and then it will be easier to advise you. 


 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 

 
 
 
 
 
 
 
 

 
 class Catalog
 {
 List<Category> Categories;
 }
 

 class Category
 {
 List<Product> products;
 }
 






 class Product
 {
 }