using Microsoft.EntityFrameworkCore; namespace WTA.Shared.Data; public interface IDbSeed where T : DbContext { void Seed(T context); }