Init commit
This commit is contained in:
parent
9ab798fd0f
commit
1f50fedb80
87 changed files with 75678 additions and 0 deletions
12
Data/ApplicationDbContext.cs
Normal file
12
Data/ApplicationDbContext.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using turf_tasker.Models;
|
||||
|
||||
namespace turf_tasker.Data;
|
||||
|
||||
public class ApplicationDbContext : DbContext
|
||||
{
|
||||
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
||||
: base(options) { }
|
||||
|
||||
public DbSet<LawnCareEvent> LawnCareEvents { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue