Road.cs
2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using System.Collections.Generic;
namespace MapsDb.Models
{
public partial class Road
{
public Road()
{
Authority = new HashSet<Authority>();
BusStop = new HashSet<BusStop>();
Contractor = new HashSet<Contractor>();
CrossSection = new HashSet<CrossSection>();
FlowIntensity = new HashSet<FlowIntensity>();
RelationToRoad = new HashSet<RelationToRoad>();
RoadPassport = new HashSet<RoadPassport>();
RoadService = new HashSet<RoadService>();
RoadSurface = new HashSet<RoadSurface>();
RoadToCategory = new HashSet<RoadToCategory>();
RoadWidth = new HashSet<RoadWidth>();
ServiceObject = new HashSet<ServiceObject>();
SettlementAddressLink = new HashSet<SettlementAddressLink>();
}
public int Id { get; set; }
public string Name { get; set; }
public string Value { get; set; }
public double? Length { get; set; }
public string HistoricalBackground { get; set; }
public string EconomicValue { get; set; }
public string LawDoc { get; set; }
public string AcceptTransferDoc { get; set; }
public string AcceptanceDoc { get; set; }
public string AuthorityAct { get; set; }
public int? RoadTypeId { get; set; }
public int Index { get; set; }
public virtual ICollection<Authority> Authority { get; set; }
public virtual ICollection<BusStop> BusStop { get; set; }
public virtual ICollection<Contractor> Contractor { get; set; }
public virtual ICollection<CrossSection> CrossSection { get; set; }
public virtual ICollection<FlowIntensity> FlowIntensity { get; set; }
public virtual ICollection<RelationToRoad> RelationToRoad { get; set; }
public virtual ICollection<RoadPassport> RoadPassport { get; set; }
public virtual ICollection<RoadService> RoadService { get; set; }
public virtual ICollection<RoadSurface> RoadSurface { get; set; }
public virtual ICollection<RoadToCategory> RoadToCategory { get; set; }
public virtual ICollection<RoadWidth> RoadWidth { get; set; }
public virtual ICollection<ServiceObject> ServiceObject { get; set; }
public virtual ICollection<SettlementAddressLink> SettlementAddressLink { get; set; }
public virtual RoadType RoadType { get; set; }
}
}