19 lines
431 B
C#
19 lines
431 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; }
|
|
}
|
|
}
|