Advertisement
_fops

model

Dec 3rd, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.19 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 tblTransactionImporterDiscounts
  16.     {
  17.         public int IDTransactionImporterDiscount { get; set; }
  18.         public int IDImporterDiscount { get; set; }
  19.         public int IDCampaignType { get; set; }
  20.         public string CampaignText { get; set; }
  21.         public Nullable<decimal> Discount { get; set; }
  22.         public int IDTransaction { get; set; }
  23.         public Nullable<System.DateTime> ReceivedOn { get; set; }
  24.    
  25.         public virtual tblCampaignTypes tblCampaignTypes { get; set; }
  26.         public virtual tblImporterDiscounts tblImporterDiscounts { get; set; }
  27.         public virtual tblTransactions tblTransactions { get; set; }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement