using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.UI; using Microsoft.EntityFrameworkCore; using turf_tasker.Models; namespace turf_tasker.Data; public class ApplicationDbContext : IdentityDbContext { private readonly DbContextOptions _options; public ApplicationDbContext(DbContextOptions options) : base(options) { _options = options; } public DbSet LawnCareEvents { get; set; } public DbSet LawnCareTips { get; set; } }