From 5fe02ba5e4fe46f123e351f79a77645a0118ca33 Mon Sep 17 00:00:00 2001
From: snemeckayova <514641@mail.muni.cz>
Date: Sat, 9 Nov 2024 11:00:45 +0100
Subject: [PATCH] Fix build errors

---
 BusinessLayer/Services/EventService/IEventService.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/BusinessLayer/Services/EventService/IEventService.cs b/BusinessLayer/Services/EventService/IEventService.cs
index 9672677..1cc21e4 100644
--- a/BusinessLayer/Services/EventService/IEventService.cs
+++ b/BusinessLayer/Services/EventService/IEventService.cs
@@ -23,8 +23,8 @@ namespace BusinessLayer.Services.EventService
         /// <param name="filter">The filter criteria for retrieving events.</param>
         /// <param name="limit">The maximum number of events to retrieve.</param>
         /// <param name="offset">The number of events to skip before starting the retrieval.</param>
-        /// <returns>A list of <see cref="EventDTO"/> objects matching the filter criteria.</returns>
-        Task<List<EventDTO>> GetEventsAsync(EventFilter filter, EventOrdering order = EventOrdering.DateAscending, int limit = 0, int offset = 0);
+        /// <returns>A list of <see cref="EventInfoDTO"/> objects matching the filter criteria.</returns>
+        Task<List<EventInfoDTO>> GetEventsAsync(EventFilter filter, EventOrdering order = EventOrdering.DateAscending, int limit = 0, int offset = 0);
 
         /// <summary>
         /// Creates a new event and assigns the creator as a participant.
-- 
GitLab