Skip to content
Snippets Groups Projects
Commit 5fe02ba5 authored by snemeckayova's avatar snemeckayova
Browse files

Fix build errors

parent 19e1a98e
No related branches found
No related tags found
2 merge requests!46Milestone-2,!29IssueEventService, EventCommentService, EventParticipantService Implementation
Pipeline #
...@@ -23,8 +23,8 @@ namespace BusinessLayer.Services.EventService ...@@ -23,8 +23,8 @@ namespace BusinessLayer.Services.EventService
/// <param name="filter">The filter criteria for retrieving events.</param> /// <param name="filter">The filter criteria for retrieving events.</param>
/// <param name="limit">The maximum number of events to retrieve.</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> /// <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> /// <returns>A list of <see cref="EventInfoDTO"/> objects matching the filter criteria.</returns>
Task<List<EventDTO>> GetEventsAsync(EventFilter filter, EventOrdering order = EventOrdering.DateAscending, int limit = 0, int offset = 0); Task<List<EventInfoDTO>> GetEventsAsync(EventFilter filter, EventOrdering order = EventOrdering.DateAscending, int limit = 0, int offset = 0);
/// <summary> /// <summary>
/// Creates a new event and assigns the creator as a participant. /// Creates a new event and assigns the creator as a participant.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment