Adding new tests

This commit is contained in:
2025-02-21 13:21:06 +01:00
parent 8d8a7a4c77
commit 810f23f814
15 changed files with 659 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
using Microsoft.EntityFrameworkCore;
using BasicDotnetTemplate.MainProject.Models.Database.SqlServer;
namespace BasicDotnetTemplate.MainProject.Core.Database
{
public class PostgreSqlDbContext : DbContext
{
public PostgreSqlDbContext(DbContextOptions<PostgreSqlDbContext> options)
: base(options)
{
}
}
}