-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModelTPGSys.Context.cs
More file actions
47 lines (43 loc) · 2.07 KB
/
Copy pathModelTPGSys.Context.cs
File metadata and controls
47 lines (43 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace QA_Tools
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class TPGSysEntities : DbContext
{
public TPGSysEntities()
: base("name=TPGSysEntities")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet<AchEntry> AchEntries { get; set; }
public virtual DbSet<AchFile> AchFiles { get; set; }
public virtual DbSet<Comment> Comments { get; set; }
public virtual DbSet<CTLinking> CTLinkings { get; set; }
public virtual DbSet<CTMasterInfo> CTMasterInfoes { get; set; }
public virtual DbSet<CTTransmitter> CTTransmitters { get; set; }
public virtual DbSet<ERO> EROes { get; set; }
public virtual DbSet<EROAccountInfo> EROAccountInfoes { get; set; }
public virtual DbSet<EROLinking> EROLinkings { get; set; }
public virtual DbSet<FeeAdvance> FeeAdvances { get; set; }
public virtual DbSet<FeeAdvanceDetail> FeeAdvanceDetails { get; set; }
public virtual DbSet<FeeSplit> FeeSplits { get; set; }
public virtual DbSet<MasterFeeAdvDetail> MasterFeeAdvDetails { get; set; }
public virtual DbSet<MasterInfo> MasterInfoes { get; set; }
public virtual DbSet<PendingFee> PendingFees { get; set; }
public virtual DbSet<PendingFeeDetail> PendingFeeDetails { get; set; }
public virtual DbSet<PendingFeeSource> PendingFeeSources { get; set; }
public virtual DbSet<PendingFeeType> PendingFeeTypes { get; set; }
}
}