//------------------------------------------------------------------------------
//
// 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 Vehicle
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Vehicle()
{
this.ApplicationLicences = new HashSet();
this.LicenceIssueDetails = 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 Tare { 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 Nullable CarryingCapacityID { get; set; }
public string YearOfManufacture { get; set; }
public Nullable CurrentOdometerReading { get; set; }
public Nullable RoadworthyCertificateDocID { get; set; }
public Nullable CertificateOfRegistrationDocID { get; set; }
public Nullable IgnoreVinException { get; set; }
public Nullable VehicleModelID { get; set; }
public Nullable ProfessionalDriversPermitDocID { get; set; }
public Nullable RankPermitDocID { get; set; }
public Nullable CertifiedServiceRecordsDocID { get; set; }
public Nullable CertifiedPublicPassangerLiabilityDocID { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
[ScriptIgnore]
public virtual ICollection ApplicationLicences { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection LicenceIssueDetails { get; set; }
}
}