10 lines
186 B
C#
10 lines
186 B
C#
using FJPSite.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace FJPSite.Interfaces;
|
|
|
|
public interface IEntitySeederFactory
|
|
{
|
|
public void Seed(ApplicationDbContext context);
|
|
}
|