mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
Standardized property naming in user-related entities to use 'Id' suffix (e.g., UserAccountId). Moved and updated repository interfaces and implementations to the DataAccessLayer.Repositories namespace. Refactored DBSeed seeders to use repository classes and improved structure. Updated .gitignore and project references
9 lines
146 B
C#
9 lines
146 B
C#
using Microsoft.Data.SqlClient;
|
|
|
|
namespace DBSeed
|
|
{
|
|
internal interface ISeeder
|
|
{
|
|
Task SeedAsync(SqlConnection connection);
|
|
}
|
|
} |