//------------------------------------------------------------------------------ // // 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 Simple_Shop.Models { using System; using System.Data.Entity; using System.Data.Entity.Infrastructure; public partial class ItemContainer : DbContext { public ItemContainer() : base("name=ItemContainer") { } protected override void OnModelCreating(DbModelBuilder modelBuilder) { throw new UnintentionalCodeFirstException(); } public DbSet Items { get; set; } public DbSet ItemCategories { get; set; } public DbSet PriceCategories { get; set; } public DbSet PricePoints { get; set; } public DbSet Deals { get; set; } public DbSet DealItems { get; set; } public DbSet ItemImages { get; set; } public DbSet Currencies { get; set; } public DbSet CurrencyCategories { get; set; } public DbSet ItemCategoryImages { get; set; } public DbSet CurrencyImages { get; set; } public DbSet CurrencyCategoryImages { get; set; } } }