25 lines
711 B
C#
25 lines
711 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TransportGuideDatabaseImplements.Models;
|
|
|
|
namespace TransportGuideDatabaseImplements
|
|
{
|
|
public class TransportGuideDB : DbContext
|
|
{
|
|
public TransportGuideDB() { }
|
|
|
|
public TransportGuideDB(DbContextOptions<TransportGuideDB> options): base(options)
|
|
{
|
|
}
|
|
public virtual DbSet<Route> Routes { set; get; }
|
|
public virtual DbSet<Stop> Stops { set; get; }
|
|
public virtual DbSet<StopRoute> StopRoutes { set; get; }
|
|
public virtual DbSet<TransportType> TransportTypes { set; get; }
|
|
}
|
|
}
|