Blame view

Entities/ServiceObject.cs 1.01 KB
0955a009   Vitaliy   add all
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
  using System;
  using System.Collections.Generic;
  
  namespace Maps.Entities
  {
      public partial class ServiceObject
      {
          public int ServiceObjectId { get; set; }
          public int? RoadId { get; set; }
          public int? RegionId { get; set; }
          public int? ServiceObjectTypeId { get; set; }
          public int? SettlementId { get; set; }
          public int? DepartmentAffiliationId { get; set; }
          public double? LocationRight { get; set; }
          public double? LocationLeft { get; set; }
          public double? LocationAxis { get; set; }
          public double? Distance { get; set; }
          public double? Capacity { get; set; }
          public string ArrangementElements { get; set; }
  
          public virtual DepartmentAffiliation DepartmentAffiliation { get; set; }
          public virtual Region Region { get; set; }
          public virtual Road Road { get; set; }
          public virtual ServiceObjectType ServiceObjectType { get; set; }
          public virtual Settlement Settlement { get; set; }
      }
  }