Blame view

src/MapsDb/Models/CrossSection.cs 1.41 KB
32912d0b   Administrator   first commit
1
2
3
  using System;
  using System.Collections.Generic;
  
c386d9eb   Yarik   Big commit
4
  namespace  MapsDb.Models
32912d0b   Administrator   first commit
5
6
7
  {
      public partial class CrossSection
      {
c386d9eb   Yarik   Big commit
8
9
10
11
12
13
          public CrossSection()
          {
              Authority = new HashSet<Authority>();
              Contractor = new HashSet<Contractor>();
          }
  
59f80a46   Administrator   add cross section
14
          public int Id { get; set; }
32912d0b   Administrator   first commit
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
          public int? RegionId { get; set; }
          public int? RoadId { get; set; }
          public double? LocationLeft { get; set; }
          public double? LocationRight { get; set; }
          public string Direction { get; set; }
          public int? SurfaceTypeId { get; set; }
          public double? LengthSection { get; set; }
          public double? LengthSurface { get; set; }
          public double? DistanceEdge { get; set; }
          public double? Width { get; set; }
          public double? Angle { get; set; }
          public int? TubeAvailability { get; set; }
          public int? SafetyAvailability { get; set; }
          public int? YearBuild { get; set; }
          public int? YearRepair { get; set; }
          public int? StateCommonId { get; set; }
  
c386d9eb   Yarik   Big commit
32
33
          public virtual ICollection<Authority> Authority { get; set; }
          public virtual ICollection<Contractor> Contractor { get; set; }
32912d0b   Administrator   first commit
34
35
36
37
38
39
          public virtual Region Region { get; set; }
          public virtual Road Road { get; set; }
          public virtual StateCommon StateCommon { get; set; }
          public virtual SurfaceType SurfaceType { get; set; }
      }
  }