using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; namespace APT.Infrastructure.EF { public interface IEntityScaner where TDbContext: DbContext { IList ScanEntityTypes(); // IList ScanEntities(IList types, ModelBuilder modelBuilder); } }