Basic ERD diagram of PV Database
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

TblImportSource.cs 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 TblImportSource
  14. {
  15. public TblImportSource()
  16. {
  17. this.TblLeads = new HashSet<TblLead>();
  18. this.TblOldImportSources = new HashSet<TblOldImportSource>();
  19. this.TblPersonnelImportSources = new HashSet<TblPersonnelImportSource>();
  20. this.TblPersonnelPersonnel_TblImportSourceImportSource = new HashSet<TblPersonnelPersonnel_TblImportSourceImportSource>();
  21. this.TblSalesVenueImportSources = new HashSet<TblSalesVenueImportSource>();
  22. }
  23. public int OID { get; set; }
  24. public string Descrip { get; set; }
  25. public string CreatedBy { 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 Nullable<bool> VisibleToTelemarketers { get; set; }
  30. public Nullable<int> MinAllowedCallbackDays { get; set; }
  31. public string OldOid { get; set; }
  32. public string Details { get; set; }
  33. public virtual ICollection<TblLead> TblLeads { get; set; }
  34. public virtual ICollection<TblOldImportSource> TblOldImportSources { get; set; }
  35. public virtual ICollection<TblPersonnelImportSource> TblPersonnelImportSources { get; set; }
  36. public virtual ICollection<TblPersonnelPersonnel_TblImportSourceImportSource> TblPersonnelPersonnel_TblImportSourceImportSource { get; set; }
  37. public virtual ICollection<TblSalesVenueImportSource> TblSalesVenueImportSources { get; set; }
  38. }
  39. }