//------------------------------------------------------------------------------ // // 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.Data.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class VehicleModel { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public VehicleModel() { this.Vehicles = new HashSet(); } public short VehicleModelID { get; set; } public Nullable VehicleMakeID { get; set; } public string Description { get; set; } public Nullable SeatedCapacityExcludingDriver { get; set; } public Nullable StandingCapacity { get; set; } public bool IsCancelled { get; set; } public long GrossWeight { get; set; } public long TareWeight { get; set; } public short VehicleTypeID { get; set; } public short CarryingCapacityID { get; set; } public bool IsValidModel { get; set; } public Nullable IsNew { get; set; } [ScriptIgnore] public virtual CarryingCapacity CarryingCapacity { get; set; } [ScriptIgnore] public virtual VehicleMake VehicleMake { get; set; } [ScriptIgnore] public virtual VehicleType VehicleType { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection Vehicles { get; set; } } }