//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace Neo.LegitimateLicences.ApplicationRequest.Models.Database { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class AdjudicationDetail { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public AdjudicationDetail() { this.ApplicationAdjudications = new HashSet(); this.ApplicationDetails = new HashSet(); } public long AdjudicationDetailID { get; set; } public short AdjudicationTypeID { get; set; } public short AdjudicationDetailStatusID { get; set; } public System.DateTime MeetingDate { get; set; } public string MeetingTime { get; set; } public bool PreAdjudicationNotificationsSent { get; set; } public bool PreAdjudicationLettersSent { get; set; } public bool PostAdjudicationNotificationsSent { get; set; } public bool PostAdjudicationLettersSent { get; set; } public long CreatedByID { get; set; } public System.DateTime CreatedDate { get; set; } public long UpdatedByID { get; set; } public System.DateTime UpdatedDate { get; set; } public bool PreAdjudicationObjectionNotificationsSent { get; set; } public bool PreAdjudicationObjectionLettersSent { get; set; } public string LocationName { get; set; } public string LocationAddress { get; set; } public short OfficeLocationID { get; set; } public System.DateTime MeetingDateEnd { get; set; } public string MeetingTimeEnd { get; set; } public Nullable MaxAdjudicationAutoApplicationCount { get; set; } public string AdjudicationNumber { get; set; } public virtual AdjudicationDetailStatu AdjudicationStatus { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection ApplicationAdjudications { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection ApplicationDetails { get; set; } } }