//------------------------------------------------------------------------------ // // 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. // //------------------------------------------------------------------------------ namespace TrainingBeforeExams { using System; using System.Collections.Generic; public partial class Order { public int IdOrder { get; set; } public int PlaceID { get; set; } public int PreorderID { get; set; } public int StatusOrderID { get; set; } public int UserID { get; set; } public virtual Place Place { get; set; } public virtual Preorder Preorder { get; set; } public virtual StatusOrder StatusOrder { get; set; } public virtual User User { get; set; } } }