20 lines
492 B
C#
20 lines
492 B
C#
using BaseOUDAL;
|
|
|
|
namespace YLErp.DataBase
|
|
{
|
|
public class BondOmsDBContext : DBContextBase
|
|
{
|
|
public BondOmsDBContext()
|
|
{
|
|
|
|
}
|
|
protected override string GetConnectionString()
|
|
{
|
|
return AppManager.GetConnectionString("bondoms");
|
|
}
|
|
public DbSet<ClientDeal> client_deal { get; set; }
|
|
public DbSet<ClientPosition> client_position { get; set; }
|
|
public DbSet<ClientOrder> client_order { get; set; }
|
|
}
|
|
}
|