14 lines
351 B
C#
14 lines
351 B
C#
|
using COA.EnterpriseServices.DataAccess.EntityFramework.Entities;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace COA.EnterpriseServices.DataAccess.EntityFramework
|
|||
|
{
|
|||
|
public class QuickBaseContext : DbContext
|
|||
|
{
|
|||
|
public DbSet<Creditor> Creditors { get; set; }
|
|||
|
}
|
|||
|
}
|