//------------------------------------------------------------------------------
//
// 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.NewRouteRequest.Models
{
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();
this.ApplicationRouteDetails = new HashSet();
}
public long NewRouteRequestDetailID { get; set; }
public Nullable WorkflowInstanceID { 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 Nullable VerifiedRouteID { get; set; }
public string RouteOrigin { get; set; }
public string RouteDestination { get; set; }
public string RouteDescription { get; set; }
public string NationalRouteNumber { get; set; }
public string BoardRouteNumber { get; set; }
public Nullable RouteLength { get; set; }
public Nullable RouteOriginPlaceID { get; set; }
public Nullable RouteDestinationPlaceID { 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; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection Nodes { get; set; }
public virtual NewRouteRequestType RequestType { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
[ScriptIgnore]
public virtual ICollection ApplicationRouteDetails { get; set; }
}
}