Guest User

Cart.cs

a guest
Mar 28th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System.ComponentModel.DataAnnotations;
  2.  
  3. namespace AdmissionsRepresentatives.Models
  4. {
  5.     public class Cart
  6.     {
  7.         [Key]
  8.         public int RecordId { get; set; }
  9.         public int Count { get; set; }
  10.         public int ProductId { get; set; }
  11.         public string CartId { get; set; }
  12.         public System.DateTime DateCreated { get; set; }
  13.  
  14.         public virtual Product Product { get; set; }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment