//------------------------------------------------------------------------------
//
// 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 TblInvoice
{
public TblInvoice()
{
this.TblInvoiceLines = new HashSet();
}
public int OID { get; set; }
public Nullable DateCreated { get; set; }
public Nullable CreatedBy { get; set; }
public Nullable Customer { get; set; }
public Nullable InvoiceDate { get; set; }
public Nullable Company { get; set; }
public Nullable Resort { get; set; }
public string ReferenceNumber { get; set; }
public string Comments { get; set; }
public Nullable DeliveryDate { get; set; }
public Nullable DeliveryAddress { get; set; }
public Nullable BankingDetails { get; set; }
public Nullable DateInvoicePrinted { get; set; }
public Nullable Recurring { get; set; }
public Nullable DateLastInvoiced { get; set; }
public Nullable NumberOfMonths { get; set; }
public Nullable RecurringFrom { get; set; }
public Nullable OptimisticLockField { get; set; }
public Nullable GCRecord { get; set; }
public Nullable TotalAmount { get; set; }
public Nullable TotalAmountExcl { get; set; }
public Nullable TotalTaxAmount { get; set; }
public string InvoiceNumber { get; set; }
public Nullable DatePaid { get; set; }
public virtual ICollection TblInvoiceLines { get; set; }
public virtual TblResort TblResort { get; set; }
}
}