Guest User

Untitled

a guest
Dec 14th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class Book
  2. {
  3. public virtual Item ItemId { get; set; } // Foreign Key
  4. public int BookId { get; set; } // primary key
  5. public string Title { get; set; }
  6. public string Author { get; set; }
  7. public DateTime DateOfPublishing { get; set; }
  8. }
Add Comment
Please, Sign In to add comment