COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.EntityFramework/QuickBaseContext.cs
2020-10-13 20:56:53 -04:00

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; }
}
}