using Azaion.Repository.Entities; using LinqToDB; using LinqToDB.Data; namespace Azaion.Repository; public class AzaionDbSql(DataOptions dataOptions) : DataConnection(dataOptions) { public ITable Medias => this.GetTable(); public ITable Users => this.GetTable(); public ITable Annotations => this.GetTable(); }