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