Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011121314151617181920212223242526 |
- using Karsha_Site.Domain.Entinies.Products;
- using Karsha_Site.Domain.Entities.Commons;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Karsha_Site.Domain.Entities.Products
- {
- public class Product : BaseEntity
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public long? Price { get; set; }
- public string Code { get; set; }
- public bool Displayed { get; set; }
- public int ViewCount { get; set; }
- public int Inventory { get; set; }
-
- public virtual Category Category { get; set; }
- public int CategoryID { get; set; }
- public virtual ICollection<ProductImages> ProductImages { get; set; }
- public virtual ICollection<ProductFeatures> ProductFeatures { get; set; }
- }
- }
|