auto.bus_razor/TicketOffice/Data/TicketOfficeContext.cs
cuqmbr c47d67b15d feat: places' availability depends on bought tickets
if cities in route you're searching for intersects with cities in the smb's ticket for the route, taken place will be unavailable and capacity in the search results will be decreased
2022-05-28 20:10:50 +03:00

28 lines
800 B
C#

#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<TicketOfficeContext> options)
: base(options)
{
}
public DbSet<TicketOffice.Models.User> User { get; set; }
public DbSet<TicketOffice.Models.Route> Route { get; set; }
public DbSet<TicketOffice.Models.RouteCity> RouteCity { get; set; }
public DbSet<TicketOffice.Models.TicketCity> TicketCity { get; set; }
public DbSet<TicketOffice.Models.Ticket> Ticket { get; set; }
}
}