#nullable disable using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using TicketOffice.Models; namespace TicketOffice.Data { public class TicketOfficeContext : DbContext { public TicketOfficeContext(DbContextOptions options) : base(options) { } public DbSet User { get; set; } public DbSet Route { get; set; } public DbSet RouteCity { get; set; } public DbSet TicketCity { get; set; } public DbSet Ticket { get; set; } } }