Basic ERD diagram of PV Database
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TblMarketingCampaign.cs 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 TblMarketingCampaign
  14. {
  15. public TblMarketingCampaign()
  16. {
  17. this.TblMarketingCampaignResorts = new HashSet<TblMarketingCampaignResort>();
  18. this.TblVouchers = new HashSet<TblVoucher>();
  19. this.TblVoucherSeries = new HashSet<TblVoucherSery>();
  20. }
  21. public int OID { get; set; }
  22. public string CreatedBy { get; set; }
  23. public Nullable<System.DateTime> CreatedDate { get; set; }
  24. public string Name { get; set; }
  25. public Nullable<int> Brand { get; set; }
  26. public Nullable<int> Partner { get; set; }
  27. public string Description { get; set; }
  28. public string LastVoucherNumberUsed { get; set; }
  29. public string Prefix { get; set; }
  30. public string SmsUser { get; set; }
  31. public string SmsPassword { get; set; }
  32. public Nullable<bool> TimeSpesificAvailability { get; set; }
  33. public Nullable<System.DateTime> AvailabilityStart { get; set; }
  34. public Nullable<System.DateTime> AvailabilityEnd { get; set; }
  35. public Nullable<int> ResortBookingConfirmationDocumentPath { get; set; }
  36. public virtual ICollection<TblMarketingCampaignResort> TblMarketingCampaignResorts { get; set; }
  37. public virtual ICollection<TblVoucher> TblVouchers { get; set; }
  38. public virtual ICollection<TblVoucherSery> TblVoucherSeries { get; set; }
  39. }
  40. }