using AyCode.Interfaces.Entities; using Microsoft.EntityFrameworkCore; namespace AyCode.Database.DbSets.Base; public interface IDbSetGuidBase where TEntity : class, IEntityGuid { DbSet Users { get; set; } } public interface IDbSetIntBase where TEntity : class, IEntityInt { DbSet Users { get; set; } } public interface IDbSetBase where TEntity : class, IEntity { DbSet Users { get; set; } } public interface IDbSetBase where TEntity : class, IEntity { DbSet Users { get; set; } }