//------------------------------------------------------------------------------ // // 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 EHEC_Server { using System; using System.Data.Entity; using System.Data.Entity.Infrastructure; public partial class EHEC_DBEntities : DbContext { public EHEC_DBEntities() : base("name=EHEC_DBEntities") { } protected override void OnModelCreating(DbModelBuilder modelBuilder) { throw new UnintentionalCodeFirstException(); } public virtual DbSet Doctors { get; set; } public virtual DbSet Exams { get; set; } public virtual DbSet Origins { get; set; } public virtual DbSet Origin_Exam { get; set; } public virtual DbSet Patients { get; set; } public virtual DbSet Results { get; set; } } }