You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
818 B
25 lines
818 B
using LinqToDB;
|
|
using LinqToDB.Configuration;
|
|
using LinqToDB.Data;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Dapper.Fawtyg.Tyrp;
|
|
|
|
public class TyrpDb : DataConnection, ITransientDependency
|
|
{
|
|
public TyrpDb(LinqToDBConnectionOptions<TyrpDb> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public ITable<Part> Part => this.GetTable<Part>();
|
|
public ITable<mes_bom> Bom => this.GetTable<mes_bom>();
|
|
public ITable<vmout> Supplier => this.GetTable<vmout>();
|
|
public ITable<pjtmout> Dictpj => this.GetTable<pjtmout>();
|
|
public ITable<cmout> Customer => this.GetTable<cmout>();
|
|
public ITable<scmout> Backflu => this.GetTable<scmout>();
|
|
|
|
public ITable<mes_product> mes_product => this.GetTable<mes_product>();
|
|
|
|
}
|
|
|