Basic ERD diagram of PV Database
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

TblMessageCode.cs 1.6KB

12345678910111213141516171819202122232425262728293031323334353637
  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 TblMessageCode
  14. {
  15. public TblMessageCode()
  16. {
  17. this.TblDebtorNotes = new HashSet<TblDebtorNote>();
  18. this.TblMessageCodeMessageGroup_MessageCodeGroupGroup = new HashSet<TblMessageCodeMessageGroup_MessageCodeGroupGroup>();
  19. this.TblPortfolioNotes = new HashSet<TblPortfolioNote>();
  20. }
  21. public int OID { get; set; }
  22. public string MessageCode { get; set; }
  23. public string Description { get; set; }
  24. public Nullable<System.DateTime> DateCreated { get; set; }
  25. public string CreatedBy { get; set; }
  26. public Nullable<int> OptimisticLockField { get; set; }
  27. public Nullable<int> GCRecord { get; set; }
  28. public Nullable<int> MessageType { get; set; }
  29. public virtual ICollection<TblDebtorNote> TblDebtorNotes { get; set; }
  30. public virtual ICollection<TblMessageCodeMessageGroup_MessageCodeGroupGroup> TblMessageCodeMessageGroup_MessageCodeGroupGroup { get; set; }
  31. public virtual ICollection<TblPortfolioNote> TblPortfolioNotes { get; set; }
  32. }
  33. }