Basic ERD diagram of PV Database
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TblTimeOffNoVoucher.cs 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 TblTimeOffNoVoucher
  14. {
  15. public TblTimeOffNoVoucher()
  16. {
  17. this.TblLeads = new HashSet<TblLead>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<System.DateTime> DateCreated { get; set; }
  21. public string Title { get; set; }
  22. public string FirstNames { get; set; }
  23. public string Surname { get; set; }
  24. public string Initials { get; set; }
  25. public string IDNumber { get; set; }
  26. public string EmailAddress { get; set; }
  27. public string Occupation { get; set; }
  28. public Nullable<int> MaritalStatus { get; set; }
  29. public string SpouseOccupation { get; set; }
  30. public Nullable<int> IncomeBracket { get; set; }
  31. public Nullable<bool> HolidayHome { get; set; }
  32. public Nullable<bool> TimeShare { get; set; }
  33. public Nullable<bool> OtherOwnedHolidayAccomodation { get; set; }
  34. public string OtherOwnedHolidayAccomodationDescription { get; set; }
  35. public string CellPhoneNumber { get; set; }
  36. public string OneTimePassword { get; set; }
  37. public string Password { get; set; }
  38. public byte[] PasswordByte { get; set; }
  39. public Nullable<int> Lead { get; set; }
  40. public string BookingReference { get; set; }
  41. public Nullable<int> OptimisticLockField { get; set; }
  42. public Nullable<int> GCRecord { get; set; }
  43. public Nullable<bool> WelcomeMessageSent { get; set; }
  44. public Nullable<bool> Contacted { get; set; }
  45. public string HowDidYouHearAboutUs { get; set; }
  46. public Nullable<bool> WantingToAttend { get; set; }
  47. public string Comments { get; set; }
  48. public Nullable<int> CallbackOption { get; set; }
  49. public Nullable<System.DateTime> CallbackTime { get; set; }
  50. public Nullable<int> Age { get; set; }
  51. public Nullable<System.DateTime> DateOfBirth { get; set; }
  52. public virtual Title Title1 { get; set; }
  53. public virtual TblIncomeBracket TblIncomeBracket { get; set; }
  54. public virtual ICollection<TblLead> TblLeads { get; set; }
  55. }
  56. }