//------------------------------------------------------------------------------ // // 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 Cafe11 { using System; using System.Collections.Generic; public partial class Order { public int IdOrder { get; set; } public int IdTableNumber { get; set; } public int IdMenu { get; set; } public int IdUser { get; set; } public virtual Menu Menu { get; set; } public virtual Table Table { get; set; } public virtual User User { get; set; } } }