21 lines
421 B
C#
21 lines
421 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TransportGuideDatabaseImplements
|
|||
|
{
|
|||
|
public class TransportGuideDB : DbContext
|
|||
|
{
|
|||
|
public TransportGuideDB() { }
|
|||
|
|
|||
|
public TransportGuideDB(DbContextOptions<TransportGuideDB> options)
|
|||
|
: base(options)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|