Developer 02 43d0d86c79 Reapply "chore(config): NLog-Konfiguration aus WebApiConfig entfernt"
This reverts commit dddc01d24c8a9c6991285b69091d423fcf07dbad.
2024-09-02 09:42:39 +02:00

12 lines
244 B
C#

using Microsoft.EntityFrameworkCore;
namespace HRD.WebApi.DAL
{
public abstract class WebApiBaseContext : DbContext
{
public WebApiBaseContext(DbContextOptions options)
: base(options)
{
}
}
}