Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 1.07 KB | None | 0 0
  1. Public Class RealEstateEntities
  2.     Inherits DbContext
  3.     Public Property Properties() As DbSet(Of [Property])
  4.         Get
  5.             Return m_Properties
  6.         End Get
  7.         Set
  8.             m_Properties = Value
  9.         End Set
  10.     End Property
  11.     Private m_Properties As DbSet(Of [Property])
  12.     Public Property Contents() As DbSet(Of Content)
  13.         Get
  14.             Return m_Contents
  15.         End Get
  16.         Set
  17.             m_Contents = Value
  18.         End Set
  19.     End Property
  20.     Private m_Contents As DbSet(Of Content)
  21.     Public Property Locations() As DbSet(Of Location)
  22.         Get
  23.             Return m_Locations
  24.         End Get
  25.         Set
  26.             m_Locations = Value
  27.         End Set
  28.     End Property
  29.     Private m_Locations As DbSet(Of Location)
  30.     Public Property Encrochments() As DbSet(Of Enroachment)
  31.         Get
  32.             Return m_Encrochments
  33.         End Get
  34.         Set
  35.             m_Encrochments = Value
  36.         End Set
  37.     End Property
  38.     Private m_Encrochments As DbSet(Of Enroachment)
  39.     Public Property EncroachmentTypes() As DbSet(Of EnroachmentType)
  40.         Get
  41.             Return m_EncroachmentTypes
  42.         End Get
  43.         Set
  44.             m_EncroachmentTypes = Value
  45.         End Set
  46.     End Property
  47.     Private m_EncroachmentTypes As DbSet(Of EnroachmentType)
  48. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement