mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
9 lines
146 B
C#
9 lines
146 B
C#
using Microsoft.Data.SqlClient;
|
|
|
|
namespace DBSeed
|
|
{
|
|
internal interface ISeeder
|
|
{
|
|
Task SeedAsync(SqlConnection connection);
|
|
}
|
|
} |