| 1234567891011121314151617181920212223242526272829 |
- // ======================================
- // Author: Ebenezer Monney
- // Email: info@ebenmonney.com
- // Copyright (c) 2017 www.ebenmonney.com
- //
- // ==> Gun4Hire: contact@ebenmonney.com
- // ======================================
- using System;
- using System.Linq;
- namespace DAL.Models
- {
- public class OrderDetail
- {
- public int Id { get; set; }
- public decimal UnitPrice { get; set; }
- public int Quantity { get; set; }
- public decimal Discount { get; set; }
- public int ProductId { get; set; }
- public Product Product { get; set; }
- public int OrderId { get; set; }
- public Order Order { get; set; }
- }
- }
|