//------------------------------------------------------------------------------ // // 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.NewRouteRequest.Models.Database { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class NewRouteRequestDetail { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public NewRouteRequestDetail() { this.Nodes = new HashSet(); } public long NewRouteRequestDetailID { get; set; } public Nullable WorkflowInstanceID { get; set; } public Nullable VerifiedRouteID { get; set; } public Nullable RouteOriginPlaceID { get; set; } public Nullable RouteDestinationPlaceID { get; set; } public string RouteDescription { get; set; } public string NationalRouteNumber { get; set; } public string BoardRouteNumber { get; set; } public Nullable RouteLength { 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 short NewRouteRequestTypeID { get; set; } public Nullable TimeTableDocumentID { get; set; } public Nullable FareScheduleDocumentID { get; set; } public bool IsAssessorVerificationRequired { get; set; } public string OriginalDescription { get; set; } public string OriginalNationalRouteNumber { get; set; } public string OriginalBoardRouteNumber { get; set; } public Nullable IsExistingLtpsOrOlasRoute { get; set; } public short DivisionTypeID { get; set; } public short ProvinceID { get; set; } public Nullable OfficeLocationID { get; set; } public virtual NewRouteRequestType NewRouteRequestType { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Nodes { get; set; } } }