try another way to implement the data stucture

This commit is contained in:
2020-09-30 22:05:18 +02:00
parent 410062daae
commit 1b387adae1
19 changed files with 234 additions and 257 deletions

View File

@ -0,0 +1,13 @@
using LinqToDB.Data;
using UserService.DatabaseLayer.DataModels;
namespace UserService.DatabaseLayer.Repositories
{
public abstract class BaseRepository
{
protected BaseRepository()
{
DataConnection.DefaultSettings = new UserDbSettings();
}
}
}