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.

TblTimeOffVoucher.cs 4.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 TblTimeOffVoucher
  14. {
  15. public TblTimeOffVoucher()
  16. {
  17. this.TblLeads = new HashSet<TblLead>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<System.DateTime> DateCreated { get; set; }
  21. public Nullable<int> Retailer { get; set; }
  22. public Nullable<int> VoucherType { get; set; }
  23. public string VoucherNumber { get; set; }
  24. public string Title { get; set; }
  25. public string FirstNames { get; set; }
  26. public string Surname { get; set; }
  27. public string Initials { get; set; }
  28. public string IDNumber { get; set; }
  29. public string EmailAddress { get; set; }
  30. public string Occupation { get; set; }
  31. public Nullable<int> MaritalStatus { get; set; }
  32. public string SpouseOccupation { get; set; }
  33. public Nullable<int> IncomeBracket { get; set; }
  34. public Nullable<bool> HolidayHome { get; set; }
  35. public Nullable<bool> TimeShare { get; set; }
  36. public Nullable<bool> OtherOwnedHolidayAccomodation { get; set; }
  37. public string OtherOwnedHolidayAccomodationDescription { get; set; }
  38. public string CellPhoneNumber { get; set; }
  39. public string OneTimePassword { get; set; }
  40. public string Password { get; set; }
  41. public byte[] PasswordByte { get; set; }
  42. public Nullable<int> Lead { get; set; }
  43. public Nullable<int> Resort { get; set; }
  44. public string BookingReference { get; set; }
  45. public Nullable<int> Contract { get; set; }
  46. public Nullable<System.DateTime> ArrivalDate { get; set; }
  47. public Nullable<System.DateTime> DepartureDate { get; set; }
  48. public Nullable<int> Rating { get; set; }
  49. public string UnitNumber { get; set; }
  50. public Nullable<bool> Arrived { get; set; }
  51. public Nullable<bool> Contacted { get; set; }
  52. public Nullable<int> OptimisticLockField { get; set; }
  53. public Nullable<int> GCRecord { get; set; }
  54. public string Guest1Name { get; set; }
  55. public string Guest1Surname { get; set; }
  56. public string Guest1IdNumber { get; set; }
  57. public string Guest2Name { get; set; }
  58. public string Guest2Surname { get; set; }
  59. public string Guest2IdNumber { get; set; }
  60. public string Child1Name { get; set; }
  61. public string Child2Name { get; set; }
  62. public string Child3Name { get; set; }
  63. public string Disabilities { get; set; }
  64. public string SpecialDietaryRequirements { get; set; }
  65. public string VehicleRegNo { get; set; }
  66. public Nullable<bool> WelcomeMessageSent { get; set; }
  67. public Nullable<bool> DayOfArrivalMessageSent { get; set; }
  68. public Nullable<bool> WeekReminderEmailSent { get; set; }
  69. public string ConfigurationCode { get; set; }
  70. public Nullable<bool> DayOfDepartureMessageSent { get; set; }
  71. public Nullable<bool> SurveyEmailSent { get; set; }
  72. public Nullable<System.DateTime> DateOfBirth { get; set; }
  73. public Nullable<System.DateTime> ResortBookingDate { get; set; }
  74. public Nullable<System.DateTime> VoucherRegDate { get; set; }
  75. public string AdditionalCellPhoneNumber { get; set; }
  76. public virtual TblResort TblResort { get; set; }
  77. public virtual Title Title1 { get; set; }
  78. public virtual TblVoucherType TblVoucherType { get; set; }
  79. public virtual TblIncomeBracket TblIncomeBracket { get; set; }
  80. public virtual ICollection<TblLead> TblLeads { get; set; }
  81. }
  82. }