using Microsoft.EntityFrameworkCore; using TIAM.Entities.Products; namespace TIAM.Database.DbSets.Products; public interface IProductDbSet { public DbSet Products { get; set; } }