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.
DS7/DSWeb/Areas/Dispatch/DB/StockDataContext.cs

31 lines
773 B
C#

2 years ago
using DSWeb.Areas.MvcShipping.DB;
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Dispatch.DB
{
public class StockDataContext : DbContext
{
public StockDataContext(string conn) : base(conn)
{
}
public StockDataContext() : base("DongShengDB")
{
}
public DbSet<VStockTakeInfo> VStockTakes { get; set; }
public DbSet<InfoClient> InfoClients { get; set; }
public DbSet<SysParamSet> ParamSets { get; set; }
public DbSet<MpConfigInfo> MpConfigs { get; set; }
public DbSet<DispInfoClient> DispInfoClients { get; set; }
public DbSet<SysEnumValue> SysEnumValues { get; set; }
}
}