Update seeds

This commit is contained in:
Aaron Po
2026-01-13 23:18:03 -05:00
parent b5ab6f6893
commit da84492aa4
12 changed files with 138 additions and 208 deletions

View File

@@ -3,7 +3,7 @@ using Microsoft.Data.SqlClient;
namespace DBSeed;
internal static class LocationSeeder
class LocationSeeder : ISeeder
{
private static readonly IReadOnlyList<(
string CountryName,
@@ -244,7 +244,7 @@ internal static class LocationSeeder
("MX-ZAC", "Zacatecas"),
];
internal static async Task SeedAsync(SqlConnection connection)
public async Task SeedAsync(SqlConnection connection)
{
foreach (var (countryName, countryCode) in Countries)
{