//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace ERD { using System; using System.Collections.Generic; public partial class TblTimeOffCompetitionEntry { public TblTimeOffCompetitionEntry() { this.TblTimeOffCompetitions = new HashSet(); this.TblTimeOffCompetitionCampaigns = new HashSet(); } public int OID { get; set; } public Nullable Lead { get; set; } public string School { get; set; } public string NameAndSurname { get; set; } public string CellphoneNumber { get; set; } public string EmailAddress { get; set; } public Nullable DateCreated { get; set; } public Nullable OptimisticLockField { get; set; } public Nullable GCRecord { get; set; } public string Suburb { get; set; } public Nullable Campaign { get; set; } public Nullable Competition { get; set; } public virtual ICollection TblTimeOffCompetitions { get; set; } public virtual TblTimeOffCompetition TblTimeOffCompetition { get; set; } public virtual ICollection TblTimeOffCompetitionCampaigns { get; set; } public virtual TblTimeOffCompetitionCampaign TblTimeOffCompetitionCampaign { get; set; } } }