123456789101112131415161718192021222324252627282930313233343536 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace examPrepare
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Order
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Order()
- {
- this.OrderProduct = new HashSet<OrderProduct>();
- }
-
- public int OrderID { get; set; }
- public int OrderStatus { get; set; }
- public System.DateTime OrderDeliveryDate { get; set; }
- public int OrderPickupPoint { get; set; }
- public System.DateTime OrderCreationDate { get; set; }
- public string OrderCode { get; set; }
- public Nullable<int> OrderBuyer { get; set; }
-
- public virtual DeliveryPoint DeliveryPoint { get; set; }
- public virtual User User { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<OrderProduct> OrderProduct { get; set; }
- }
- }
|