Blame view

src/MapsDb/Models/Region.cs 1.59 KB
32912d0b   Administrator   first commit
1
2
3
4
5
  using System;
  using System.Collections.Generic;
  
  namespace  MapsDb.Models
  {
9035cd53   Administrator   add RoadToCategor...
6
          public partial class Region
32912d0b   Administrator   first commit
7
8
9
10
11
12
13
14
15
      {
          public Region()
          {
              BusStop = new HashSet<BusStop>();
              CrossSection = new HashSet<CrossSection>();
              FlowIntensity = new HashSet<FlowIntensity>();
              RoadPassport = new HashSet<RoadPassport>();
              RoadService = new HashSet<RoadService>();
              RoadSurface = new HashSet<RoadSurface>();
9035cd53   Administrator   add RoadToCategor...
16
              RoadToCategory = new HashSet<RoadToCategory>();
32912d0b   Administrator   first commit
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
              RoadWidth = new HashSet<RoadWidth>();
              ServiceObject = new HashSet<ServiceObject>();
              SettlementAddressLink = new HashSet<SettlementAddressLink>();
          }
  
          public int RegionId { get; set; }
          public string Name { get; set; }
          public int? Index { get; set; }
  
          public virtual ICollection<BusStop> BusStop { get; set; }
          public virtual ICollection<CrossSection> CrossSection { get; set; }
          public virtual ICollection<FlowIntensity> FlowIntensity { get; set; }
          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...
32
          public virtual ICollection<RoadToCategory> RoadToCategory { get; set; }
32912d0b   Administrator   first commit
33
34
35
36
37
          public virtual ICollection<RoadWidth> RoadWidth { get; set; }
          public virtual ICollection<ServiceObject> ServiceObject { get; set; }
          public virtual ICollection<SettlementAddressLink> SettlementAddressLink { get; set; }
      }
  }