using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ProductModel { interface IProduct { string ID { get; set; } string Title { get; set; } string ImagePath { get; set; } string Description { get; set; } IList RelatedProducts{get;} void AddRelatedProduct(SimpleProduct product); } }