You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
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_md> t_PublicInterface_Log { get; set; }
|
|
public DbSet<t_sys_soft_error_md> t_sys_soft_error { get; set; }
|
|
|
|
public DbSet<t_crm_client_md> t_crm_client { get; set; }
|
|
|
|
public DbSet<t_op_seae_md> t_op_seae { get; set; }
|
|
public DbSet<t_op_seae_assistant_md> t_op_seae_assistant { get; set; }
|
|
|
|
public DbSet<t_op_ctn_md> t_op_ctn { get; set; }
|
|
public DbSet<t_op_ams_md> t_op_ams { get; set; }
|
|
|
|
public DbSet<csCustAccount> CustAccount { get; set; }
|
|
public DbSet<csCustContact> CustContact { get; set; }
|
|
public DbSet<csCustInfo> CustInfo { get; set; }
|
|
public DbSet<csCustInvoice> CustInvoice { get; set; }
|
|
public DbSet<csCustOfficeInfo> CustOfficeInfo { get; set; }
|
|
public DbSet<csCustSales> CustSales { get; set; }
|
|
public DbSet<csCustType> CustType { get; set; }
|
|
public DbSet<t_ch_fee_md> t_ch_fee { get; set; }
|
|
}
|
|
|
|
|
|
} |