1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
-
- namespace ERD
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Title
- {
- public Title()
- {
- this.Transfigurations = new HashSet<Transfiguration>();
- this.Transfigurations1 = new HashSet<Transfiguration>();
- this.TblStreamlines = new HashSet<TblStreamline>();
- this.TblStreamlines1 = new HashSet<TblStreamline>();
- this.TblTFGLeads = new HashSet<TblTFGLead>();
- this.TblTimeOffNoVouchers = new HashSet<TblTimeOffNoVoucher>();
- this.TblTimeOffVouchers = new HashSet<TblTimeOffVoucher>();
- this.TblDetailedInfoes = new HashSet<TblDetailedInfo>();
- this.TblLeads = new HashSet<TblLead>();
- this.TblLeads1 = new HashSet<TblLead>();
- this.TblPersonnels = new HashSet<TblPersonnel>();
- this.TblPortfolios = new HashSet<TblPortfolio>();
- this.TblPortfolios1 = new HashSet<TblPortfolio>();
- }
-
- public string Title1 { get; set; }
- public Nullable<int> OptimisticLockField { get; set; }
- public Nullable<int> IsMale { get; set; }
- public Nullable<bool> Hidden { get; set; }
-
- public virtual ICollection<Transfiguration> Transfigurations { get; set; }
- public virtual ICollection<Transfiguration> Transfigurations1 { get; set; }
- public virtual ICollection<TblStreamline> TblStreamlines { get; set; }
- public virtual ICollection<TblStreamline> TblStreamlines1 { get; set; }
- public virtual ICollection<TblTFGLead> TblTFGLeads { get; set; }
- public virtual ICollection<TblTimeOffNoVoucher> TblTimeOffNoVouchers { get; set; }
- public virtual ICollection<TblTimeOffVoucher> TblTimeOffVouchers { get; set; }
- public virtual ICollection<TblDetailedInfo> TblDetailedInfoes { get; set; }
- public virtual ICollection<TblLead> TblLeads { get; set; }
- public virtual ICollection<TblLead> TblLeads1 { get; set; }
- public virtual ICollection<TblPersonnel> TblPersonnels { get; set; }
- public virtual ICollection<TblPortfolio> TblPortfolios { get; set; }
- public virtual ICollection<TblPortfolio> TblPortfolios1 { get; set; }
- }
- }
|