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

9 lines
223 B
C#

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