diff --git a/Back/skydiveLogs-api.Infrastructure/AircraftRepository.cs b/Back/skydiveLogs-api.Infrastructure/AircraftRepository.cs
index f122d89..2e0dcf3 100644
--- a/Back/skydiveLogs-api.Infrastructure/AircraftRepository.cs
+++ b/Back/skydiveLogs-api.Infrastructure/AircraftRepository.cs
@@ -8,10 +8,6 @@ using skydiveLogs_api.Infrastructure.Interfaces;
namespace skydiveLogs_api.Infrastructure
{
- ///
- /// Repository class for managing aircraft data in the database.
- /// Provides operations to add, retrieve, count, and update aircraft records.
- ///
public class AircraftRepository : IAircraftRepository
{
#region Public Constructors
diff --git a/Back/skydiveLogs-api.Infrastructure/DropZoneRepository.cs b/Back/skydiveLogs-api.Infrastructure/DropZoneRepository.cs
index 271b8b8..f27b0b6 100644
--- a/Back/skydiveLogs-api.Infrastructure/DropZoneRepository.cs
+++ b/Back/skydiveLogs-api.Infrastructure/DropZoneRepository.cs
@@ -8,13 +8,6 @@ using skydiveLogs_api.Infrastructure.Interfaces;
namespace skydiveLogs_api.Infrastructure
{
- ///
- /// Repository class for managing drop zone data in the database.
- /// Provides operations to add, retrieve, count, and update drop zone records.
- ///
- ///
- /// This repository interacts with LiteDB to perform CRUD operations on drop zones.
- ///
public class DropZoneRepository : IDropZoneRepository
{
#region Public Constructors
diff --git a/Back/skydiveLogs-api.Infrastructure/FavoriteDropZoneRepository.cs b/Back/skydiveLogs-api.Infrastructure/FavoriteDropZoneRepository.cs
index 985c278..c3d40af 100644
--- a/Back/skydiveLogs-api.Infrastructure/FavoriteDropZoneRepository.cs
+++ b/Back/skydiveLogs-api.Infrastructure/FavoriteDropZoneRepository.cs
@@ -7,14 +7,6 @@ using skydiveLogs_api.Infrastructure.Interfaces;
namespace skydiveLogs_api.Infrastructure
{
- ///
- /// Repository class for managing favorite drop zone data in the database.
- /// Provides operations to add, delete, retrieve, and manage favorite drop zones per user.
- ///
- ///
- /// This repository interacts with LiteDB to perform operations on favorite drop zones,
- /// where each favorite drop zone is associated with both a user and a drop zone.
- ///
public class FavoriteDropZoneRepository : IFavoriteDropZoneRepository
{
#region Public Constructors
diff --git a/Back/skydiveLogs-api.Infrastructure/GearRepository.cs b/Back/skydiveLogs-api.Infrastructure/GearRepository.cs
index 8c66d90..6b4d35a 100644
--- a/Back/skydiveLogs-api.Infrastructure/GearRepository.cs
+++ b/Back/skydiveLogs-api.Infrastructure/GearRepository.cs
@@ -7,14 +7,6 @@ using skydiveLogs_api.Infrastructure.Interfaces;
namespace skydiveLogs_api.Infrastructure
{
- ///
- /// Repository class for managing gear data in the database.
- /// Provides operations to add, retrieve, count, and update gear records per user.
- ///
- ///
- /// This repository interacts with LiteDB to perform CRUD operations on gear items.
- /// Each gear item is associated with a user, allowing for user-specific gear management.
- ///
public class GearRepository : IGearRepository
{
#region Public Constructors
diff --git a/Back/skydiveLogs-api.Infrastructure/JumpRepository.cs b/Back/skydiveLogs-api.Infrastructure/JumpRepository.cs
index 79f0ff1..5c64b7e 100644
--- a/Back/skydiveLogs-api.Infrastructure/JumpRepository.cs
+++ b/Back/skydiveLogs-api.Infrastructure/JumpRepository.cs
@@ -7,15 +7,6 @@ using skydiveLogs_api.Infrastructure.Interfaces;
namespace skydiveLogs_api.Infrastructure
{
- ///
- /// Repository class for managing jump data in the database.
- /// Provides operations to add, delete, retrieve, and update jump records per user.
- ///
- ///
- /// This repository interacts with LiteDB to perform CRUD operations on jump records.
- /// Each jump record is associated with a user, aircraft, drop zone, gear, and jump type.
- /// Navigation properties are included for related entities to enable eager loading.
- ///
public class JumpRepository : IJumpRepository
{
#region Public Constructors
diff --git a/Back/skydiveLogs-api.Infrastructure/JumpTypeRepository.cs b/Back/skydiveLogs-api.Infrastructure/JumpTypeRepository.cs
index 1cfd9d1..cb678ba 100644
--- a/Back/skydiveLogs-api.Infrastructure/JumpTypeRepository.cs
+++ b/Back/skydiveLogs-api.Infrastructure/JumpTypeRepository.cs
@@ -8,13 +8,6 @@ using skydiveLogs_api.Infrastructure.Interfaces;
namespace skydiveLogs_api.Infrastructure
{
- ///
- /// Repository class for managing jump type data in the database.
- ///
- ///
- /// This repository interacts with LiteDB to perform CRUD operations on jump type records.
- /// Jump types are typically stored at the database level and are shared across all users.
- ///
public class JumpTypeRepository : IJumpTypeRepository
{
#region Public Constructors