using System; using System.ComponentModel.DataAnnotations; namespace SalesCatalog.Model { /// /// Product. /// Crucial object in the catalog, /// being at each origin of form display /// its properties may be used to fill some form input values or other form element. /// in text values, within {} ex: {Name} : {Price} ({stockStatus}) ($description) . /// public abstract class Product { /// /// Gets or sets the product name. /// /// The name. [Required] [StringLength(1024)] public string Name { get; set; } /// /// Gets or sets the product description. /// /// The description. public string Description { get; set; } public ProductImage[] Images { get; set; } public SaleForm CommandForm { get; set; } [Required] [StringLength(255)] public string Reference { get; set; } public Period CommandValidityDates { get; set; } public abstract string[] GetSalesConditions(); } }