Basic ERD diagram of PV Database
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 Title
  14. {
  15. public Title()
  16. {
  17. this.Transfigurations = new HashSet<Transfiguration>();
  18. this.Transfigurations1 = new HashSet<Transfiguration>();
  19. this.TblStreamlines = new HashSet<TblStreamline>();
  20. this.TblStreamlines1 = new HashSet<TblStreamline>();
  21. this.TblTFGLeads = new HashSet<TblTFGLead>();
  22. this.TblTimeOffNoVouchers = new HashSet<TblTimeOffNoVoucher>();
  23. this.TblTimeOffVouchers = new HashSet<TblTimeOffVoucher>();
  24. this.TblDetailedInfoes = new HashSet<TblDetailedInfo>();
  25. this.TblLeads = new HashSet<TblLead>();
  26. this.TblLeads1 = new HashSet<TblLead>();
  27. this.TblPersonnels = new HashSet<TblPersonnel>();
  28. this.TblPortfolios = new HashSet<TblPortfolio>();
  29. this.TblPortfolios1 = new HashSet<TblPortfolio>();
  30. }
  31. public string Title1 { get; set; }
  32. public Nullable<int> OptimisticLockField { get; set; }
  33. public Nullable<int> IsMale { get; set; }
  34. public Nullable<bool> Hidden { get; set; }
  35. public virtual ICollection<Transfiguration> Transfigurations { get; set; }
  36. public virtual ICollection<Transfiguration> Transfigurations1 { get; set; }
  37. public virtual ICollection<TblStreamline> TblStreamlines { get; set; }
  38. public virtual ICollection<TblStreamline> TblStreamlines1 { get; set; }
  39. public virtual ICollection<TblTFGLead> TblTFGLeads { get; set; }
  40. public virtual ICollection<TblTimeOffNoVoucher> TblTimeOffNoVouchers { get; set; }
  41. public virtual ICollection<TblTimeOffVoucher> TblTimeOffVouchers { get; set; }
  42. public virtual ICollection<TblDetailedInfo> TblDetailedInfoes { get; set; }
  43. public virtual ICollection<TblLead> TblLeads { get; set; }
  44. public virtual ICollection<TblLead> TblLeads1 { get; set; }
  45. public virtual ICollection<TblPersonnel> TblPersonnels { get; set; }
  46. public virtual ICollection<TblPortfolio> TblPortfolios { get; set; }
  47. public virtual ICollection<TblPortfolio> TblPortfolios1 { get; set; }
  48. }
  49. }