Blame view

Entities/Organization.cs 441 Bytes
0955a009   Vitaliy   add all
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  using System;
  using System.Collections.Generic;
  
  namespace Maps.Entities
  {
      public partial class Organization
      {
          public Organization()
          {
              RoadService = new HashSet<RoadService>();
          }
  
          public int OrganizationId { get; set; }
          public string Name { get; set; }
          public int? DateAdd { get; set; }
  
          public virtual ICollection<RoadService> RoadService { get; set; }
      }
  }