using BaseOUDAL; namespace YLErp.DataBase { public class BondOmsDBContext : DBContextBase { public BondOmsDBContext() { } protected override string GetConnectionString() { return AppManager.GetConnectionString("bondoms"); } public DbSet client_deal { get; set; } public DbSet client_position { get; set; } public DbSet client_order { get; set; } } }