mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 22:26:34 +00:00
121052a3ef
add security encryption and hashing: WIP add endpoints: register user, get and save resources add db main operations, User entity
10 lines
242 B
C#
10 lines
242 B
C#
using Azaion.Common.Entities;
|
|
using LinqToDB;
|
|
using LinqToDB.Data;
|
|
|
|
namespace Azaion.Common.Database;
|
|
|
|
public class AzaionDb(DataOptions dataOptions) : DataConnection(dataOptions)
|
|
{
|
|
public ITable<User> Users => this.GetTable<User>();
|
|
} |