using Microsoft.EntityFrameworkCore; namespace Infrastructure.Data { public interface IDbConfig { void Seed(DbContext context); } }