using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace DSWeb.Areas.MvcShipping.DB { public class RuleContext : DbContext { public RuleContext() : base("DongShengDB") { } public DbSet Rules { get; set; } public DbSet RuleItems { get; set; } public DbSet EnumValues { get; set; } } }