15 lines
301 B
C#
15 lines
301 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)
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|