Advertisement
_fops

Untitled

Jan 12th, 2014
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.92 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 tblVehicleModels
  16.     {
  17.         public tblVehicleModels()
  18.         {
  19.             this.tblTransactions = new HashSet<tblTransactions>();
  20.         }
  21.    
  22.         public int IDVehicleModel { get; set; }
  23.         public string Category { get; set; }
  24.         public string Brand { get; set; }
  25.    
  26.         public virtual ICollection<tblTransactions> tblTransactions { get; set; }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement