16 lines
326 B
C#
16 lines
326 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FSI.BT.IR.Organization.Db.Data
|
|
{
|
|
public interface IDataContext
|
|
{
|
|
|
|
public DbSet<Models.Organization> Organizations { get; set; }
|
|
}
|
|
}
|