13 lines
299 B
C#
13 lines
299 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DamageAssesment.Api.Employees.Db
|
|
{
|
|
public class EmployeeDbContext: DbContext
|
|
{
|
|
public DbSet<Db.Employee> Employees { get; set; }
|
|
public EmployeeDbContext(DbContextOptions options) : base(options)
|
|
{
|
|
}
|
|
}
|
|
}
|