Not able to get a clear distinction between these concepts that are used very often in multi-layered architecture.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To me:
1) Entities/Business Objects/Business Model Objects – the actual objects (nouns) in the business domain. For example “Order” and “OrderItem”. “Order” could have a property of “OrderDate”, and function called “GetOrderItems”
2) Data Transfer Objects – serializable property bag representations of your Entities. Using the example above, the function “GetOrderItems” would be missing from your “Order” DTO.