29 lines
689 B
C#
29 lines
689 B
C#
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<TransferDestination> TransferDestinations { get; set; }
|
|
|
|
public TransferDestinationDbContext()
|
|
{
|
|
|
|
}
|
|
|
|
public TransferDestinationDbContext(string name) : base(name)
|
|
{
|
|
}
|
|
|
|
public TransferDestinationDbContext(DbContextOptions<DbContext> options, string name) : base(options, name)
|
|
{
|
|
}
|
|
}
|
|
}
|