refactor: Kommentar zur Dokumentation aktualisieren

This commit is contained in:
Developer 02 2024-09-11 09:57:42 +02:00
parent f6d5305c22
commit ed2a591317

View File

@ -25,6 +25,7 @@ namespace DigitalData.Core.Infrastructure
/// Initializes a new instance of the CRUDRepository with the specified DbContext.
/// </summary>
/// <param name="dbContext">The DbContext instance to be used by the repository.</param>
/// <param name="dbSet">The DbSet instance to be used by the repository.</param>
public CRUDRepository(TDbContext dbContext, DbSet<TEntity> dbSet)
{
_dbContext = dbContext;