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
28 lines
800 B
C#
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; }
|
|
}
|
|
}
|