24 lines
568 B
C#
24 lines
568 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using TIAM.Entities.Transfers;
|
|
|
|
namespace TIAM.Database.DbContexts.Transfers
|
|
{
|
|
public class TransferDestinationDbContext : DbContextBase
|
|
{
|
|
public DbSet<TransferDestination> TransferDestinations { get; set; }
|
|
|
|
public TransferDestinationDbContext()
|
|
{
|
|
|
|
}
|
|
|
|
public TransferDestinationDbContext(string name) : base(name)
|
|
{
|
|
}
|
|
|
|
public TransferDestinationDbContext(DbContextOptions<DbContext> options, string name) : base(options, name)
|
|
{
|
|
}
|
|
}
|
|
}
|