Advertisement
_fops

model

Dec 8th, 2013
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.42 KB | None | 0 0
  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.  
  10. namespace ProvSys.Models
  11. {
  12.     using System;
  13.     using System.Collections.Generic;
  14.    
  15.     public partial class tblTransactions
  16.     {
  17.         public tblTransactions()
  18.         {
  19.             this.tblTransactionImporterDiscounts = new HashSet<tblTransactionImporterDiscounts>();
  20.         }
  21.    
  22.         public int IDTransaction { get; set; }
  23.         public int IDEmployee { get; set; }
  24.         public string CustomerFirstName { get; set; }
  25.         public string CustomerLastName { get; set; }
  26.         public int IDCustomerType { get; set; }
  27.         public string VehicleType { get; set; }
  28.         public Nullable<int> IDVehicleModel { get; set; }
  29.         public string VehicleFreeText { get; set; }
  30.         public int IDSalesChannel { get; set; }
  31.         public string ChassisNumber { get; set; }
  32.         public string OrderNumber { get; set; }
  33.         public System.DateTime ContractDate { get; set; }
  34.         public Nullable<System.DateTime> DeliveryDate { get; set; }
  35.         public Nullable<System.DateTime> PaymentDate { get; set; }
  36.         public string ExCustomer { get; set; }
  37.         public string Comments { get; set; }
  38.         public string EuroplusNumber { get; set; }
  39.         public string Financing { get; set; }
  40.         public string PriceModel { get; set; }
  41.         public decimal ListPrice { get; set; }
  42.         public decimal Extras { get; set; }
  43.         public decimal OtherExtras { get; set; }
  44.         public string OtherExtrasDescription { get; set; }
  45.         public decimal DeliveryFixPrice { get; set; }
  46.         public decimal Discount { get; set; }
  47.         public int IDDiscountType { get; set; }
  48.         public decimal FreeExtras { get; set; }
  49.         public string FreeExtrasDescription { get; set; }
  50.         public string ExchangedVehicleType { get; set; }
  51.         public string ExchangedChassisNumber { get; set; }
  52.         public decimal ExchangedVehiclePrice { get; set; }
  53.         public decimal ExchangedVehicleSalesPrice { get; set; }
  54.         public Nullable<int> IDParticipator { get; set; }
  55.         public string TypeOfParticipation { get; set; }
  56.         public Nullable<bool> AffectsProvision { get; set; }
  57.         public Nullable<bool> AffectsQuantity { get; set; }
  58.         public Nullable<bool> DocumentsReceived { get; set; }
  59.         public decimal C_ImportDiscountTotal { get; set; }
  60.         public Nullable<bool> ProvisionChecked { get; set; }
  61.         public decimal C_ImportSpecialDiscountTotal { get; set; }
  62.         public decimal C_CompletePrice { get; set; }
  63.         public decimal C_EstimateExceeded { get; set; }
  64.         public decimal C_TotalDiscountValue { get; set; }
  65.         public decimal C_GrossPrice { get; set; }
  66.         public decimal C_TotalDiscountPercent { get; set; }
  67.         public decimal M_TurnoverCorrectionFactor { get; set; }
  68.         public decimal M_ProvisionRelevantTurnoverVehicle { get; set; }
  69.         public decimal M_TotalTurnoverExtras { get; set; }
  70.         public decimal M_TotalDiscountExtrasPercent { get; set; }
  71.         public decimal M_TurnoverMultiplicator { get; set; }
  72.         public decimal M_ProvisionRelevantTurnoverExtras { get; set; }
  73.         public decimal M_ProvisionRelevantTurnoverTotal { get; set; }
  74.         public decimal A_ProvisionParticipation { get; set; }
  75.         public decimal A_ProvisionFactor { get; set; }
  76.         public decimal A_ProvisionTurnover { get; set; }
  77.         public decimal A_ProvisionTotal { get; set; }
  78.         public decimal M_TotalDiscountVehiclePercent { get; set; }
  79.    
  80.         public virtual tblCustomerTypes tblCustomerTypes { get; set; }
  81.         public virtual tblDiscountTypes tblDiscountTypes { get; set; }
  82.         public virtual tblEmployees tblEmployees { get; set; }
  83.         public virtual tblEmployees tblEmployees1 { get; set; }
  84.         public virtual tblSalesChannels tblSalesChannels { get; set; }
  85.         public virtual ICollection<tblTransactionImporterDiscounts> tblTransactionImporterDiscounts { get; set; }
  86.         public virtual tblVehicleModels tblVehicleModels { get; set; }
  87.     }
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement