12 lines
244 B
C#
12 lines
244 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace HRD.WebApi.DAL
|
|
{
|
|
public abstract class WebApiBaseContext : DbContext
|
|
{
|
|
public WebApiBaseContext(DbContextOptions options)
|
|
: base(options)
|
|
{
|
|
}
|
|
}
|
|
} |