16 lines
333 B
C#
16 lines
333 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace APT.Infrastructure.EF
|
|
{
|
|
public interface ITenantEntityBuilder
|
|
{
|
|
void UpdateEntities(ModelBuilder modelBuilder);
|
|
}
|
|
public interface ITenantEntityBuilder<TDbContext> : ITenantEntityBuilder
|
|
where TDbContext : DbContext
|
|
{
|
|
|
|
}
|
|
}
|