15 lines
353 B
C#
15 lines
353 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.Locations.Db
|
|||
|
{
|
|||
|
public class LocationDbContext:DbContext
|
|||
|
{
|
|||
|
public DbSet<Db.Location> Locations { get; set; }
|
|||
|
public DbSet<Db.Region> Regions { get; set; }
|
|||
|
public LocationDbContext(DbContextOptions options) : base(options)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|