From 37807258099659b3e6cf7c58de1c7652eef1142f Mon Sep 17 00:00:00 2001 From: Leonardo Campos Date: Wed, 17 Aug 2011 00:13:37 -0300 Subject: [PATCH] Adding product entity. related #2 --- .../DomainObjects/Foundation/Product.cs | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/PetStore.Core/DomainObjects/Foundation/Product.cs diff --git a/src/PetStore.Core/DomainObjects/Foundation/Product.cs b/src/PetStore.Core/DomainObjects/Foundation/Product.cs new file mode 100644 index 0000000..df993d5 --- /dev/null +++ b/src/PetStore.Core/DomainObjects/Foundation/Product.cs @@ -0,0 +1,37 @@ +namespace PetStore.Core.DomainObjects.Foundation +{ + /// + /// Entidade que representa um produto + /// + public class Product + { + #region Public Properties + + /// + /// Id único do produto + /// + public int Id { get; set; } + + /// + /// Categoria do produto + /// + public Category Category { get; set; } + + /// + /// Nome do produto + /// + public string Name { get; set; } + + /// + /// Descrição do produto + /// + public string Description { get; set; } + + /// + /// Caminho da imagem do produto + /// + public string ImagePath { get; set; } + + #endregion + } +}