//------------------------------------------------------------------------------ // // 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.LicenceIssueRequest.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class Vehicle { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Vehicle() { this.LicenceIssueDetails = new HashSet(); this.Licences = new HashSet(); this.ApplicationVehicleDetails = new HashSet(); } public long VehicleID { get; set; } public string ReferenceNumber { get; set; } public string RegistrationNumber { get; set; } public string EngineNumber { get; set; } public string VIN { get; set; } public Nullable SeatedCapacity { get; set; } public Nullable StandingCapacity { get; set; } public Nullable GrossMass { get; set; } public Nullable VehicleMakeID { get; set; } public Nullable VehicleTypeID { get; set; } public short VehicleStatusID { get; set; } public Nullable OlasID { get; set; } public Nullable LtpsID { get; set; } public Nullable NeoID { get; set; } public string YearOfManufacture { get; set; } public Nullable CarryingCapacityID { get; set; } public Nullable IgnoreVinException { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection LicenceIssueDetails { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection Licences { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection ApplicationVehicleDetails { get; set; } } }