TourIAm/TIAM.Database/DbSets/Users/IUserProductMappingDbSet.cs

10 lines
286 B
C#

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; }
}