You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/BookingWeb/DB/InfoDB.cs

40 lines
900 B
C#

2 years ago
using BookingWeb.DB.Model;
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
namespace BookingWeb.DB
{
public class InfoDB : DbContext
{
public InfoDB():base("BookingDB")
{
}
public DbSet<INFO_YARD> Yards { get; set; }
public DbSet<CODE_DISPORT> Disports { get; set; }
public DbSet<CODE_FRT> Frts { get; set; }
public DbSet<CODE_ISSUTYPE> IssuTypes { get; set; }
public DbSet<CODE_LOADPORT> Loadports { get; set; }
public DbSet<CODE_PACKAGE> Packages { get; set; }
public DbSet<INFO_CARRIER> Carriers { get; set; }
public DbSet<CODE_SERVICE> Services { get; set; }
public DbSet<CODE_VESSEL> Vessels { get; set; }
public DbSet<CODE_CTN> Ctns { get; set; }
public DbSet<OP_LOG> Logs { get; set; }
}
}