Basic ERD diagram of PV Database
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace ERD
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class TblDetailedInfo
  14. {
  15. public TblDetailedInfo()
  16. {
  17. this.TblVouchers = new HashSet<TblVoucher>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<System.DateTime> DateOfBirth { get; set; }
  21. public Nullable<int> MaritalStatus { get; set; }
  22. public Nullable<int> Ethnicity { get; set; }
  23. public string Title { get; set; }
  24. public string IDNumber { get; set; }
  25. public Nullable<bool> Contacted { get; set; }
  26. public string HowDidYouHearAboutUs { get; set; }
  27. public string Occupation { get; set; }
  28. public string SpouseOccupation { get; set; }
  29. public string OneTimePassword { get; set; }
  30. public string Password { get; set; }
  31. public byte[] PasswordByte { get; set; }
  32. public Nullable<bool> HolidayHome { get; set; }
  33. public Nullable<bool> TimeShare { get; set; }
  34. public Nullable<bool> OtherOwnedHolidayAccomodation { get; set; }
  35. public string OtherOwnedHolidayAccomodationDescription { get; set; }
  36. public string Initials { get; set; }
  37. public virtual TblEthnicity TblEthnicity { get; set; }
  38. public virtual Title Title1 { get; set; }
  39. public virtual ICollection<TblVoucher> TblVouchers { get; set; }
  40. }
  41. }