Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. [CollectionPropertyAttribute("e.employeeID", true)]
  2. [GuidProperty(false, true, true)]
  3. public string employeeID
  4. { get; set; }
  5.  
  6.  
  7. [CollectionPropertyAttribute("e.companyID", true)]
  8. [GuidProperty(false, true)]
  9. public string companyID
  10. { get; set; }
  11.  
  12.  
  13. [CollectionPropertyAttribute("e.title", true, true)]
  14. [StringProperty(false)]
  15. public string title
  16. { get; set; }
  17.  
  18.  
  19. [CollectionPropertyAttribute("e.dateOfHire", false)]
  20. [DateTimeProperty(false)]
  21. public string dateOfHire
  22. { get; set; }
  23.  
  24.  
  25. [CollectionPropertyAttribute("e.active", true)]
  26. [BooleanProperty(false)]
  27. public string active
  28. { get; set; }
  29.  
  30.  
  31. [CollectionPropertyAttribute("e.hidden", true)]
  32. [BooleanProperty(false)]
  33. public string hidden
  34. { get; set; }
  35.  
  36.  
  37. [CollectionPropertyAttribute("e.isTechnician", true)]
  38. [BooleanProperty(false)]
  39. public string isTechnician
  40. { get; set; }
  41.  
  42.  
  43. [CollectionPropertyAttribute("e.isCorporate", true)]
  44. [BooleanProperty(false)]
  45. public string isCorporate
  46. { get; set; }
  47.  
  48.  
  49. [CollectionPropertyAttribute("e.isSalesRep", true)]
  50. [BooleanProperty(false)]
  51. public string isSalesRep
  52. { get; set; }
  53.  
  54.  
  55. [CollectionPropertyAttribute("e.firstName", true, true)]
  56. [StringProperty(true)]
  57. public string firstName
  58. { get; set; }
  59.  
  60.  
  61. [CollectionPropertyAttribute("e.lastName", true, true)]
  62. [StringProperty(true)]
  63. public string lastName
  64. { get; set; }
  65.  
  66.  
  67. [CollectionPropertyAttribute("e.address1", true, true)]
  68. [StringProperty(false)]
  69. public string address1
  70. { get; set; }
  71.  
  72.  
  73. [CollectionPropertyAttribute("e.address2", true)]
  74. [StringProperty(false)]
  75. public string address2
  76. { get; set; }
  77.  
  78.  
  79. [CollectionPropertyAttribute("e.city", true, true)]
  80. [StringProperty(false)]
  81. public string city
  82. { get; set; }
  83.  
  84.  
  85. [CollectionPropertyAttribute("e.state", true, true)]
  86. [StringProperty(false)]
  87. public string state
  88. { get; set; }
  89.  
  90.  
  91. [CollectionPropertyAttribute("e.zip", true, true)]
  92. [StringProperty(false)]
  93. public string zip
  94. { get; set; }
  95.  
  96.  
  97. [CollectionPropertyAttribute("e.country", true, true)]
  98. [StringProperty(false)]
  99. public string country
  100. { get; set; }
  101.  
  102.  
  103. [CollectionPropertyAttribute("e.email", true, true)]
  104. [StringProperty(false)]
  105. public string email
  106. { get; set; }
  107.  
  108.  
  109. [CollectionPropertyAttribute("e.phone1", true, true)]
  110. [StringProperty(false)]
  111. public string phone1
  112. { get; set; }
  113.  
  114.  
  115. [CollectionPropertyAttribute("e.phone1Label", false)]
  116. [StringProperty(false, "Phone 1")]
  117. public string phone1Label
  118. { get; set; }
  119.  
  120.  
  121. [CollectionPropertyAttribute("e.phone2", false, true)]
  122. [StringProperty(false)]
  123. public string phone2
  124. { get; set; }
  125.  
  126.  
  127. [CollectionPropertyAttribute("e.phone2Label", false)]
  128. [StringProperty(false, "Phone 2")]
  129. public string phone2Label
  130. { get; set; }
  131.  
  132.  
  133. [CollectionPropertyAttribute("e.phone3", false, true)]
  134. [StringProperty(false)]
  135. public string phone3
  136. { get; set; }
  137.  
  138.  
  139. [CollectionPropertyAttribute("e.phone3Label", false)]
  140. [StringProperty(false, "Phone 3")]
  141. public string phone3Label
  142. { get; set; }
  143.  
  144.  
  145. [CollectionPropertyAttribute("e.ASPUserName", true)]
  146. [StringProperty(false, true)]
  147. public string aspUserName
  148. { get; set; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement