OrderDetail.cs 703 B

1234567891011121314151617181920212223242526272829
  1. // ======================================
  2. // Author: Ebenezer Monney
  3. // Email: info@ebenmonney.com
  4. // Copyright (c) 2017 www.ebenmonney.com
  5. //
  6. // ==> Gun4Hire: contact@ebenmonney.com
  7. // ======================================
  8. using System;
  9. using System.Linq;
  10. namespace DAL.Models
  11. {
  12. public class OrderDetail
  13. {
  14. public int Id { get; set; }
  15. public decimal UnitPrice { get; set; }
  16. public int Quantity { get; set; }
  17. public decimal Discount { get; set; }
  18. public int ProductId { get; set; }
  19. public Product Product { get; set; }
  20. public int OrderId { get; set; }
  21. public Order Order { get; set; }
  22. }
  23. }