12345678910111213141516171819202122232425262728293031323334353637383940 |
- //------------------------------------------------------------------------------
- // <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 examPrepare
- {
- using System;
- using System.Data.Entity;
- using System.Data.Entity.Infrastructure;
-
- public partial class UP_41P_GroshevIEntities : DbContext
- {
- public UP_41P_GroshevIEntities()
- : base("name=UP_41P_GroshevIEntities")
- {
- }
-
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- throw new UnintentionalCodeFirstException();
- }
-
- public virtual DbSet<DeliveryPoint> DeliveryPoint { get; set; }
- public virtual DbSet<Manufacturer> Manufacturer { get; set; }
- public virtual DbSet<Order> Order { get; set; }
- public virtual DbSet<OrderProduct> OrderProduct { get; set; }
- public virtual DbSet<OrderStatus> OrderStatus { get; set; }
- public virtual DbSet<Product> Product { get; set; }
- public virtual DbSet<ProductCategory> ProductCategory { get; set; }
- public virtual DbSet<ProductVendor> ProductVendor { get; set; }
- public virtual DbSet<Role> Role { get; set; }
- public virtual DbSet<sysdiagrams> sysdiagrams { get; set; }
- public virtual DbSet<User> User { get; set; }
- }
- }
|