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.

TblTimeOffCompetitionEntry.cs 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 TblTimeOffCompetitionEntry
  14. {
  15. public TblTimeOffCompetitionEntry()
  16. {
  17. this.TblTimeOffCompetitions = new HashSet<TblTimeOffCompetition>();
  18. this.TblTimeOffCompetitionCampaigns = new HashSet<TblTimeOffCompetitionCampaign>();
  19. }
  20. public int OID { get; set; }
  21. public Nullable<int> Lead { get; set; }
  22. public string School { get; set; }
  23. public string NameAndSurname { get; set; }
  24. public string CellphoneNumber { get; set; }
  25. public string EmailAddress { get; set; }
  26. public Nullable<System.DateTime> DateCreated { get; set; }
  27. public Nullable<int> OptimisticLockField { get; set; }
  28. public Nullable<int> GCRecord { get; set; }
  29. public string Suburb { get; set; }
  30. public Nullable<int> Campaign { get; set; }
  31. public Nullable<int> Competition { get; set; }
  32. public virtual ICollection<TblTimeOffCompetition> TblTimeOffCompetitions { get; set; }
  33. public virtual TblTimeOffCompetition TblTimeOffCompetition { get; set; }
  34. public virtual ICollection<TblTimeOffCompetitionCampaign> TblTimeOffCompetitionCampaigns { get; set; }
  35. public virtual TblTimeOffCompetitionCampaign TblTimeOffCompetitionCampaign { get; set; }
  36. }
  37. }