17 lines
475 B
C#
17 lines
475 B
C#
using AyCode.Database;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TIAM.Database.DbContexts;
|
|
|
|
namespace TIAM.Database.DataLayers;
|
|
|
|
public class TiamDalBase<TDbContext> : DalBase<TDbContext> where TDbContext : TiamDbContextBase
|
|
{
|
|
//public TiamDalBase() : base(new TransferDestinationDbContext("DeveloperDbConnection"))
|
|
//{
|
|
// Ctx.Database. }
|
|
} |