//------------------------------------------------------------------------------
//
// 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.Legitimate.Data.Models
{
using System.Web.Script.Serialization;
using System;
using System.Collections.Generic;
public partial class PrecheckDetail
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public PrecheckDetail()
{
this.ApplicationRequestDetails = new HashSet();
}
public long PrecheckDetailID { get; set; }
public short ApplicationRequestTypeID { get; set; }
public short SourceApplicationID { get; set; }
public string ApplicantName { get; set; }
public string OlPermitNumber { get; set; }
public string IDNumber { get; set; }
public string ChassisNumber { 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 IsCancelled { get; set; }
public string VehicleRegistrationNumber { get; set; }
[ScriptIgnore]
public string NltisXml { get; set; }
public Nullable NltisXmlDataFound { get; set; }
public bool IsComplete { get; set; }
public Nullable AssociationID { get; set; }
public bool IsRenewal { get; set; }
public bool IsLateRenewal { get; set; }
public Nullable PrecheckDetailIncompleteReasonID { get; set; }
public string ContactEmail { get; set; }
public string ContactCell { get; set; }
public Nullable ModeID { get; set; }
public bool IsLtpsConversion { get; set; }
public Nullable NumberOfVehiclesRequired { get; set; }
public Nullable ServiceTypeID { get; set; }
public virtual ApplicationRequestType ApplicationRequestType { get; set; }
public virtual SourceApplication SourceApplication { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection ApplicationRequestDetails { get; set; }
public virtual PrecheckDetailIncompleteReason Reason { get; set; }
public virtual Mode Mode { get; set; }
}
}