using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity; using System.Linq; using System.Web; namespace DSWeb.Common.DB { public class DS6DataContext : DbContext { public DS6DataContext() : base("DS6DB") { } public DS6DataContext(string conn) : base(conn) { } public DbSet t_PublicInterface_Log { get; set; } public DbSet t_sys_soft_error { get; set; } public DbSet t_crm_client { get; set; } public DbSet t_op_seae { get; set; } public DbSet t_op_seae_assistant { get; set; } public DbSet t_op_ctn { get; set; } public DbSet t_op_ams { get; set; } public DbSet CustAccount { get; set; } public DbSet CustContact { get; set; } public DbSet CustInfo { get; set; } public DbSet CustInvoice { get; set; } public DbSet CustOfficeInfo { get; set; } public DbSet CustSales { get; set; } public DbSet CustType { get; set; } public DbSet t_ch_fee { get; set; } } }