1234567891011121314151617181920212223242526272829 |
- //------------------------------------------------------------------------------
- // <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 olimp8
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Order
- {
- public int IdOrder { get; set; }
- public int UserID { get; set; }
- public int PreorderID { get; set; }
- public int OrderStatusID { get; set; }
- public int PlaceID { get; set; }
- public int NumberOfPeople { get; set; }
-
- public virtual OrderStatu OrderStatu { get; set; }
- public virtual Place Place { get; set; }
- public virtual Preorder Preorder { get; set; }
- public virtual User User { get; set; }
- }
- }
|