using Google.Protobuf.Compiler; using LinqToDB; using LinqToDB.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MasaBlazorApp3.Pojo; namespace MasaBlazorApp3.DataAccess { public class AppDataConnection : DataConnection { public AppDataConnection(DataOptions options) : base(options.Options) { } public ITable User => this.GetTable(); public ITable Role => this.GetTable(); public ITable ChannelList => this.GetTable(); public ITable ChannelStock => this.GetTable(); public ITable DrugInfo => this.GetTable(); public ITable DrugManuNo => this.GetTable(); public ITable OrderInfo => this.GetTable(); public ITable OrderDetail => this.GetTable(); public ITable MachineRecord => this.GetTable(); public ITable InOutInvoice => this.GetTable(); public ITable AccountBook => this.GetTable(); public ITable SettingManu => this.GetTable(); public ITable Plan => this.GetTable(); public ITable PlanDetails => this.GetTable(); public ITable AccountBookG2 => this.GetTable(); public ITable HkcChangeShifts => this.GetTable(); } }