Code Cleanup

Make fields readonly
Remove unnecessary casts
Format document
Remove unnecessary usings
Sort usings
Use file-level namespaces
Order modifiers
This commit is contained in:
Michael Bucari-Tovo
2026-02-05 12:48:44 -07:00
parent d67692355f
commit 3ab1edc076
325 changed files with 18850 additions and 19145 deletions

View File

@@ -1,12 +1,11 @@
using Microsoft.EntityFrameworkCore.Design;
namespace DataLayer.Postgres
namespace DataLayer.Postgres;
public class PostgresContextFactory : IDesignTimeDbContextFactory<LibationContext>
{
public class PostgresContextFactory : IDesignTimeDbContextFactory<LibationContext>
{
public LibationContext CreateDbContext(string[] args)
{
return LibationContextFactory.CreatePostgres(string.Empty);
}
}
public LibationContext CreateDbContext(string[] args)
{
return LibationContextFactory.CreatePostgres(string.Empty);
}
}