mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
8 lines
135 B
C#
8 lines
135 B
C#
using Microsoft.Data.SqlClient;
|
|
|
|
namespace Database.Seed;
|
|
|
|
internal interface ISeeder
|
|
{
|
|
Task SeedAsync(SqlConnection connection);
|
|
} |