//------------------------------------------------------------------------------ // // 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 olimp8 { using System; using System.Data.Entity; using System.Data.Entity.Infrastructure; public partial class olimp_8Entities : DbContext { public olimp_8Entities() : base("name=olimp_8Entities") { } protected override void OnModelCreating(DbModelBuilder modelBuilder) { throw new UnintentionalCodeFirstException(); } public virtual DbSet Dish { get; set; } public virtual DbSet Order { get; set; } public virtual DbSet OrderStatus { get; set; } public virtual DbSet Place { get; set; } public virtual DbSet Preorder { get; set; } public virtual DbSet Role { get; set; } public virtual DbSet Staff { get; set; } public virtual DbSet StaffList { get; set; } public virtual DbSet StatusPlace { get; set; } public virtual DbSet User { get; set; } public virtual DbSet UserStatus { get; set; } } }