11 lines
300 B
C#
11 lines
300 B
C#
using AyCode.Database.DataLayers;
|
|
using AyCode.Database.DbContexts;
|
|
using Mango.Database.DbContexts;
|
|
|
|
namespace Mango.Database.DataLayers;
|
|
|
|
public interface IDalBase : IAcDalBase
|
|
{ }
|
|
|
|
public interface IDalBase<TDbContext> : IAcDalBase<TDbContext>, IAcDalBase where TDbContext : AcDbContextBase
|
|
{ } |