using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using TIAM.Entities.TransferDestinations; namespace TIAM.Database.DbContexts { public class TransferDestinationDbContext : TiamDbContextBase { public DbSet TransferDestinations { get; set; } public TransferDestinationDbContext() { } public TransferDestinationDbContext(string name) : base(name) { } public TransferDestinationDbContext(DbContextOptions options, string name) : base(options, name) { } } }