|
using AyCode.Database.DataLayers;
|
|
using Mango.Database.DbContexts;
|
|
|
|
namespace Mango.Database.DataLayers;
|
|
|
|
public interface IDalBase : IAcDalBase
|
|
{ }
|
|
|
|
public interface IDalBase<TDbContext> : IAcDalBase<TDbContext>, IAcDalBase where TDbContext : DbContextBase
|
|
{ } |