|
using Microsoft.EntityFrameworkCore;
|
|
using TIAM.Database.DbSets.Transfers;
|
|
using TIAM.Entities.Users;
|
|
|
|
namespace TIAM.Database.DbSets.Users;
|
|
|
|
public interface IUserProductMappingDbSet : ITransferToDriverDbSet
|
|
{
|
|
public DbSet<UserProductMapping> UserProductMappings { get; set; }
|
|
} |