//------------------------------------------------------------------------------ // // 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 ProvSys.Models { using System; using System.Collections.Generic; public partial class tblTransactions { public tblTransactions() { this.tblTransactionImporterDiscounts = new HashSet(); } public int IDTransaction { get; set; } public int IDEmployee { get; set; } public string CustomerFirstName { get; set; } public string CustomerLastName { get; set; } public int IDCustomerType { get; set; } public string VehicleType { get; set; } public Nullable IDVehicleModel { get; set; } public string VehicleFreeText { get; set; } public int IDSalesChannel { get; set; } public string ChassisNumber { get; set; } public string OrderNumber { get; set; } public System.DateTime ContractDate { get; set; } public Nullable DeliveryDate { get; set; } public Nullable PaymentDate { get; set; } public string ExCustomer { get; set; } public string Comments { get; set; } public string EuroplusNumber { get; set; } public string Financing { get; set; } public string PriceModel { get; set; } public decimal ListPrice { get; set; } public decimal Extras { get; set; } public decimal OtherExtras { get; set; } public string OtherExtrasDescription { get; set; } public decimal DeliveryFixPrice { get; set; } public decimal Discount { get; set; } public int IDDiscountType { get; set; } public decimal FreeExtras { get; set; } public string FreeExtrasDescription { get; set; } public string ExchangedVehicleType { get; set; } public string ExchangedChassisNumber { get; set; } public decimal ExchangedVehiclePrice { get; set; } public decimal ExchangedVehicleSalesPrice { get; set; } public Nullable IDParticipator { get; set; } public string TypeOfParticipation { get; set; } public Nullable AffectsProvision { get; set; } public Nullable AffectsQuantity { get; set; } public Nullable DocumentsReceived { get; set; } public decimal C_ImportDiscountTotal { get; set; } public Nullable ProvisionChecked { get; set; } public decimal C_ImportSpecialDiscountTotal { get; set; } public decimal C_CompletePrice { get; set; } public decimal C_EstimateExceeded { get; set; } public decimal C_TotalDiscountValue { get; set; } public decimal C_GrossPrice { get; set; } public decimal C_TotalDiscountPercent { get; set; } public decimal M_TurnoverCorrectionFactor { get; set; } public decimal M_ProvisionRelevantTurnoverVehicle { get; set; } public decimal M_TotalTurnoverExtras { get; set; } public decimal M_TotalDiscountExtrasPercent { get; set; } public decimal M_TurnoverMultiplicator { get; set; } public decimal M_ProvisionRelevantTurnoverExtras { get; set; } public decimal M_ProvisionRelevantTurnoverTotal { get; set; } public decimal A_ProvisionParticipation { get; set; } public decimal A_ProvisionFactor { get; set; } public decimal A_ProvisionTurnover { get; set; } public decimal A_ProvisionTotal { get; set; } public decimal M_TotalDiscountVehiclePercent { get; set; } public virtual tblCustomerTypes tblCustomerTypes { get; set; } public virtual tblDiscountTypes tblDiscountTypes { get; set; } public virtual tblEmployees tblEmployees { get; set; } public virtual tblEmployees tblEmployees1 { get; set; } public virtual tblSalesChannels tblSalesChannels { get; set; } public virtual ICollection tblTransactionImporterDiscounts { get; set; } public virtual tblVehicleModels tblVehicleModels { get; set; } } }