Files
the-biergarten-app/DBSeed/ISeeder.cs
2026-01-13 23:18:03 -05:00

6 lines
100 B
C#

using Microsoft.Data.SqlClient;
interface ISeeder
{
Task SeedAsync(SqlConnection connection);
}