|
using Microsoft.EntityFrameworkCore;
|
|
using TIAM.Entities.Transfers;
|
|
|
|
namespace TIAM.Database.DbSets.Transfers;
|
|
|
|
public interface ITransferDestinationToProductDbSet
|
|
{
|
|
public DbSet<TransferDestinationToProduct> TransferDestinationToProducts { get; set; }
|
|
} |