using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Core.Objects; using System.Linq; using System.Web; using System.Runtime.Serialization; using Resources; using Newtonsoft.Json; using Weee.Models.Survey_form_metadata; using Weee.Models.ExtensionMethods; namespace Weee.Models { [Table("ProductLCAAbandonedStage")] public class AbandonedStage { public int ID { get; set; } public decimal WasteWeight { get; set; } public decimal RecyclePercentage { get; set; } public decimal ReusePercentage { get; set; } public decimal RecoverPercentage { get; set; } public decimal IncinerationParameter { get; set; } public decimal AbandonedParameter { get; set; } public string Description { get; set; } [JsonIgnore] [IgnoreDataMember] public virtual ProductLCA OwnerLCA { get; set; } } }