using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace Sleis.Models { /// /// The base object of the Unit Process Release Point /// public abstract class UnitProcessReleasePoint : BaseIdentityModel { public virtual int ReleasePointId { get; set; } public virtual ReleasePoint ReleasePoint { get; set; } public virtual int UnitProcessId { get; set; } public virtual Decimal? AvgPctEmission { get; set; } public override void SetContext(string parentContext) { ValidationContxt = parentContext; base.ValidationContxt = this.ValidationContxt; } } }