1234567891011121314151617181920212223242526 |
- namespace BeautySaloon
- {
- using System;
- using System.Collections.Generic;
-
- public partial class ProductSale
- {
- public int ID { get; set; }
- public System.DateTime SaleDate { get; set; }
- public int ProductID { get; set; }
- public int Quantity { get; set; }
- public Nullable<int> ClientServiceID { get; set; }
-
- public virtual ClientService ClientService { get; set; }
- public virtual Product Product { get; set; }
- }
- }
|