//------------------------------------------------------------------------------ // // 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. // //------------------------------------------------------------------------------ namespace ERD { using System; using System.Collections.Generic; public partial class TblEVoucher { public TblEVoucher() { this.TblEVoucherNotes = new HashSet(); } public int OID { get; set; } public Nullable DateCreated { get; set; } public string CreatedBy { get; set; } public string VoucherNumber { get; set; } public Nullable SalesVenue { get; set; } public string OTP { get; set; } public Nullable Disabled { get; set; } public Nullable Authorised { get; set; } public Nullable VoucherSeries { get; set; } public Nullable VoucherType { get; set; } public Nullable VoucherCategory { get; set; } public Nullable DateRegistered { get; set; } public Nullable DateAllocated { get; set; } public Nullable Number { get; set; } public string Booking { get; set; } public Nullable SMSSent { get; set; } public Nullable EmailSent { get; set; } public Nullable OptimisticLockField { get; set; } public Nullable GCRecord { get; set; } public Nullable InTransaction { get; set; } public Nullable VoucherRedeemed { get; set; } public virtual TblSalesVenue TblSalesVenue { get; set; } public virtual TblEVoucherCategory TblEVoucherCategory { get; set; } public virtual TblEVoucherSery TblEVoucherSery { get; set; } public virtual TblEVoucherType TblEVoucherType { get; set; } public virtual ICollection TblEVoucherNotes { get; set; } } }