32912d0b
Administrator
first commit
|
1
2
3
4
5
6
7
8
9
|
using System;
using System.Collections.Generic;
namespace MapsDb.Models
{
public partial class Road
{
public Road()
{
|
c386d9eb
Yarik
Big commit
|
10
|
Authority = new HashSet<Authority>();
|
32912d0b
Administrator
first commit
|
11
|
BusStop = new HashSet<BusStop>();
|
c386d9eb
Yarik
Big commit
|
12
|
Contractor = new HashSet<Contractor>();
|
32912d0b
Administrator
first commit
|
13
14
|
CrossSection = new HashSet<CrossSection>();
FlowIntensity = new HashSet<FlowIntensity>();
|
a036a6c0
Yarik
Console
|
15
|
RelationToRoad = new HashSet<RelationToRoad>();
|
32912d0b
Administrator
first commit
|
16
17
18
|
RoadPassport = new HashSet<RoadPassport>();
RoadService = new HashSet<RoadService>();
RoadSurface = new HashSet<RoadSurface>();
|
9035cd53
Administrator
add RoadToCategor...
|
19
|
RoadToCategory = new HashSet<RoadToCategory>();
|
32912d0b
Administrator
first commit
|
20
21
22
23
24
|
RoadWidth = new HashSet<RoadWidth>();
ServiceObject = new HashSet<ServiceObject>();
SettlementAddressLink = new HashSet<SettlementAddressLink>();
}
|
405bb8be
Yarik
Road
|
25
|
public int Id { get; set; }
|
32912d0b
Administrator
first commit
|
26
27
28
29
30
31
32
33
34
35
36
37
|
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; }
|
c386d9eb
Yarik
Big commit
|
38
|
public virtual ICollection<Authority> Authority { get; set; }
|
32912d0b
Administrator
first commit
|
39
|
public virtual ICollection<BusStop> BusStop { get; set; }
|
c386d9eb
Yarik
Big commit
|
40
|
public virtual ICollection<Contractor> Contractor { get; set; }
|
32912d0b
Administrator
first commit
|
41
42
|
public virtual ICollection<CrossSection> CrossSection { get; set; }
public virtual ICollection<FlowIntensity> FlowIntensity { get; set; }
|
a036a6c0
Yarik
Console
|
43
|
public virtual ICollection<RelationToRoad> RelationToRoad { get; set; }
|
32912d0b
Administrator
first commit
|
44
45
46
|
public virtual ICollection<RoadPassport> RoadPassport { get; set; }
public virtual ICollection<RoadService> RoadService { get; set; }
public virtual ICollection<RoadSurface> RoadSurface { get; set; }
|
9035cd53
Administrator
add RoadToCategor...
|
47
|
public virtual ICollection<RoadToCategory> RoadToCategory { get; set; }
|
32912d0b
Administrator
first commit
|
48
49
50
51
52
53
|
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; }
}
}
|